incalculable-spring-4592
12/16/2022, 11:59 AMwooden-ice-60753
12/16/2022, 6:45 PM.Release.IsInstall
built-in object for helm. I'm currently using k8s.helm.v3.Chart for the deployment. It seems that it always sets .Release.IsInstall
to true
and .Release.IsUpgrade
to false
. k8s.helm.v3.Release does set these values right.
I'm in a bind. Either I need to get it working for k8s.helm.v3.Chart or switch to k8s.helm.v3.Release. For the former, I'm coming up empty. For the later, there isn't any docs on that. Just swapping the Chart to Release doesn't work gracefully because pulumi will try to delete resources at the same time helm will try to create resources with the same name.
Any tips?sparse-intern-71089
12/17/2022, 1:55 PMstocky-father-68249
12/19/2022, 11:22 AMgorgeous-architect-28903
12/19/2022, 12:34 PMstrong-winter-28568
12/19/2022, 12:47 PMconst ip = frontend.status.loadBalancer.apply(
(lb) => lb.ingress[0].ip || lb.ingress[0].hostname
);
I am trying to use this IP in a client (Browser) application configuration. But I am not able to convert it into a string . I tried different methods including
ip.apply(i => `http://${i}/abc`)
Second
pulumi.interpolate `http://${ip}/abc`
Third
pulumi.concat(`http://`, ip, `/abc`)
Every time I get the same error, toString()
is not supported, or toJSON()
is not supported. Can someone help me please ?enough-sunset-73069
12/19/2022, 2:09 PMfierce-xylophone-92490
12/19/2022, 6:07 PMwing
or winglang
. I'm sure it'll be a while before it's production ready, but still neat to think about.gorgeous-accountant-60580
12/20/2022, 11:55 AMstrong-match-67698
12/21/2022, 12:09 PMA new version of Pulumi is available. To upgrade from version '3.49.0' to '3.50.0'
but then in chocolatey doesn't seem to find it
Maybe it wasn't added to repo?ambitious-father-68746
12/21/2022, 12:30 PMnarrow-quill-60617
12/21/2022, 3:35 PMcuddly-hairdresser-74798
12/21/2022, 9:13 PMconsole.log()
from Pulumi TS code?little-journalist-4778
12/22/2022, 10:35 AMgreen-plastic-3690
12/22/2022, 11:21 AMclever-painter-96148
12/22/2022, 11:48 AMgentle-angle-52500
12/22/2022, 10:26 PMgentle-angle-52500
12/22/2022, 10:26 PMcuddly-computer-18851
12/22/2022, 10:56 PMenough-garden-22763
12/23/2022, 12:41 AMnarrow-cpu-35517
12/23/2022, 10:14 AMconst userpool = new aws.cognito.UserPool(`${name}-userpool`, {
usernameAttributes: ["email", "phone_number"],
accountRecoverySetting: {
recoveryMechanisms: [
{
name: "verified_phone_number",
priority: 1
}, {
name: "verified_email",
priority: 2
}
]
},
smsConfiguration: {
externalId,
snsCallerArn: snsRole.arn,
snsRegion: "us-east-1",
},
schemas: [
{
name: "given_name",
attributeDataType: "String",
mutable: true
},
{
name: "family_name",
attributeDataType: "String",
mutable: true
}
]
})
witty-vegetable-61961
12/23/2022, 3:16 PMwitty-vegetable-61961
12/23/2022, 3:16 PMsquare-laptop-45713
12/23/2022, 6:23 PMbrainy-church-78120
12/23/2022, 7:09 PMelegant-printer-13257
12/24/2022, 12:29 AMconst queue = new aws.sqs.Queue(`${project}-${stack}-queue`);
const api = new awsx.apigateway.API(`${project}-${stack}-api`, {
routes: [
{
path: "/{proxy+}",
method: "POST",
eventHandler: async (request, context) => {
const sqs = new AWS.SQS();
sqs.sendMessage({
MessageBody: "hi"
QueueUrl: queue.id,
});
},
},
],
});
victorious-church-57397
12/24/2022, 7:45 PMbillions-accountant-89861
12/26/2022, 6:04 AM<https://github.com/vincentbernat/pulumi-vultr>
but can't install itcreamy-napkin-46533
12/27/2022, 4:21 AMclever-painter-96148
12/27/2022, 8:58 AMmktemp = Command('mktemp', create='mktemp', delete='rm {path}')
clever-painter-96148
12/27/2022, 8:58 AMmktemp = Command('mktemp', create='mktemp', delete='rm {path}')
from pulumi import Output, export
from pulumi_command.local import Command
mktemp_create = Command('mktemp-create', create='mktemp')
mktemp_delete = Command('mktemp-delete', delete=Output.format('rm {path}', path=mktemp_create.stdout))
export('tmp_file', mktemp_create.stdout)
But that feels wrong. 🤔echoing-dinner-19531
12/27/2022, 10:00 AMclever-painter-96148
12/27/2022, 10:00 AMwhite-balloon-205
12/27/2022, 7:13 PM