ambitious-crayon-56788
01/22/2020, 5:51 PMFUNCTIONS_EXTENSION_VERSION
version ~1
, I explicitly added an app setting to set it to ~2
, but this is being ignored.
Happy to share code and screenshots somewhere a little more private. Thanks.busy-dusk-74339
01/22/2020, 10:35 PM$HOME/pogos2/certs
, but of course $HOME
is different depending on OS and user.busy-dusk-74339
01/22/2020, 10:38 PMpulumi config set vault:ca_cert_dir $HOME/pogos2/certs
naturally bash expands $HOME
and it ends up in my config as /Users/wryfi/pogos2/certs
.busy-dusk-74339
01/22/2020, 10:38 PMelegant-crayon-4967
01/23/2020, 12:52 AMconst org = aws.organizations.getOrganization()
accounts
is a property of that, but I have no idea how to get to it or print out it’s promisebumpy-breakfast-57632
01/23/2020, 5:56 AMpulumi refresh
suddenly hanging, nothing has changed
and pulumi preview
hanging when run in an Azure DevOps agent, also worked earlier today with no changebroad-helmet-79436
01/23/2020, 10:41 AMbroad-helmet-79436
01/23/2020, 10:42 AMbroad-helmet-79436
01/23/2020, 10:52 AMerror: missing google credentials
no matter what I do now (pulumi stack ls
, pulumi refresh
for example)billowy-laptop-45963
01/23/2020, 6:32 PMelegant-crayon-4967
01/23/2020, 9:33 PMconst foo = new aws.resource(name { provider: my provider })
and that provider information is changed, Pulumi doesn’t seem to recognize that change to the resource. This is helpful in changing accounts for resources or regions on the resource.worried-engineer-33884
01/23/2020, 11:37 PMError calling "Runtime.evaluate(global.__inflightFunctions.id2)": Uncaught
at ../../../../opt/pulumi/node_modules/@pulumi/pulumi/runtime/closure/v8_v11andHigher.js:123:23
at fulfilled (../../../../opt/pulumi/node_modules/@pulumi/pulumi/runtime/closure/v8_v11andHigher.js:18:58)
polite-magician-88225
01/24/2020, 7:10 AMfast-dinner-32080
01/24/2020, 5:09 PMcareful-market-30508
01/24/2020, 9:06 PMflat-insurance-25294
01/25/2020, 2:02 AMlimited-honey-31480
01/25/2020, 3:54 AMbillowy-secretary-44583
01/26/2020, 3:34 AMbig-potato-91793
01/26/2020, 7:32 PMmysterious-egg-7415
01/26/2020, 7:33 PMbright-orange-69401
01/27/2020, 11:58 AMnice-guitar-97142
01/27/2020, 5:58 PMpulumi stack init
command with a --secrets-provider
arg and it’s just sitting there with no logging or anything. i attempted to also run with -v 4
arg to no avail. what do i need to do to get some kind of logging to tell me why this command isn’t working? if it helps, I am using azurekeyvault, the key is RSA-2048, and the whole command looks like
pulumi stack init MyOrganization/dev --secrets-provider="<azurekeyvault://my-kv-name.vault.azure.net/keys/pulumi-secrets>"
future-morning-96441
01/27/2020, 8:07 PMpulumi up
?
I'm facing long deployment times and the CI ran out of memory at several occations (currently memory is set to 4GB, I believe).swift-painter-31084
01/27/2020, 9:28 PMSECONDARY
. A PRIMARY
record will be served if its healthcheck is passing, otherwise the SECONDARY
will be served." however all examples I've found show Type indicating the record type, ie "CNAME", "A", etc.handsome-actor-1155
01/27/2020, 11:12 PMpulumi new <template>
and instantiate with default complex configsgreat-vr-65723
01/28/2020, 12:19 AMpulumi up
that might take 30 minutes, about half way through Pulumi will lose access to the S3 bucket backend, and then it gets all sorts of confused.
Is there any way to launch asynchronous deployments with a non-SaaS backend?
With CloudFormation, it submits the stack to AWS and runs asynchronously, so your token only needs to be valid for the length of time it takes to run CreateStack
or UpdateStack
. I'm kind of hoping for something similar for Pulumi.able-crayon-21563
01/28/2020, 9:22 AMable-crayon-21563
01/28/2020, 9:23 AMpulumi.ComponentResource
.faint-motherboard-95438
01/28/2020, 10:35 AMIngress
in my clusters which was working fine before but now when I create/update I got an error like :
error: creation of resource […] failed because the Kubernetes API server reported that the apiVersion for this resource does not exist. Verify that any required CRDs have been created: no matches for kind “Ingress” in version “networking.k8s.io/v1beta1”I create the resource like
new pulumi_kubernetes.networking.v1beta1.Ingress()
I tried to switch to `pulumi_kubernetes.networking.v1.Ingress`but I got a type error that Ingress
does not exist in networking.v1
My versions :
“@pulumi/kubernetes”: “1.4.1",
“@pulumi/pulumi”: “1.9.0",
kubectl version :
Client Version: version.Info{Major:“1”, Minor:“17", GitVersion:“v1.17.2”, GitCommit:“59603c6e503c87169aea6106f57b9f242f64df89", GitTreeState:“clean”, BuildDate“2020 01 23T1421:54Z”, GoVersion:“go1.13.6”, Compiler:“gc”, Platform:“darwin/amd64”}
Server Version: version.Info{Major:“1", Minor:“13+“, GitVersion:“v1.13.11-gke.14”, GitCommit:“56d89863d1033f9668ddd6e1c1aea81cd846ef88", GitTreeState:“clean”, BuildDate“2019 11 07T1912:22Z”, GoVersion:“go1.12.11b4”, Compiler:“gc”, Platform:“linux/amd64”}
I suppose that’s a problem between pulumi packages version and the kubernetes server api but I can’t find a match between them both now.
I also tried to downgrade @pulumi/kubernetes
without any success.bitter-dentist-28132
01/28/2020, 2:29 PM