dazzling-vr-33407
06/02/2020, 11:20 AMmillions-journalist-34868
06/02/2020, 12:09 PMhundreds-musician-51496
06/02/2020, 10:37 PMaverage-receptionist-65239
06/03/2020, 1:20 AMkube-system
, plus Go templating is horrendous (causing me cross my fingers). I'd rather not try upgrading to Helm v3 as that's likely to break the world and require backups and restore considerations. I'm wondering if Pulumi is a viable alternative to Helm v3, jsonett, ksonett, YAML/JSON with low-brow template system (e.g. envsubst), dhall-kubernetes, TF, etc.colossal-room-15708
06/03/2020, 7:28 AMvictorious-helmet-11068
06/03/2020, 11:08 AMvictorious-helmet-11068
06/03/2020, 11:08 AMvictorious-helmet-11068
06/03/2020, 11:08 AMvictorious-helmet-11068
06/03/2020, 11:09 AMmillions-furniture-75402
06/03/2020, 1:31 PMloud-soccer-66701
06/03/2020, 6:18 PMbored-river-53178
06/03/2020, 6:48 PMechoing-breakfast-73834
06/03/2020, 7:56 PMpulumi up
after upgrading the pulumi
and pulumi-aws
packages to:
Pulumi: 2.3.0
pulumi (python): 2.3.0
pulumi-aws (python): 2.7.0
Looks like it's related to creating an AWS autoscaling group. Anybody else seen this/experiencing similar issues?
Log here due to length: https://hastebin.com/zasaveduhu
Additionally even after downgrading the python packages I get the same error (but didn't before). Do either install Go or cache Go packages somewhere or something?calm-greece-42329
06/03/2020, 8:28 PMconst subnet = aws.ec2.Subnet.get("some_subnet_name")
to look up an existing subnet or vpc, but apparently i need to also provide the resource id?billions-glass-17089
06/03/2020, 9:08 PMmillions-furniture-75402
06/03/2020, 9:24 PMDOCKER_BUILDKIT=1
via the env
property on a DockerBuild
using awsx.ecs.Image.fromDockerBuild
. My env
is the same as the test example ( https://github.com/pulumi/pulumi-docker/pull/95/files#diff-737a6e76d84c40fbbd438671aaf1a8c3R43 ), but I receive an error, and I don’t see the env options in there (not sure if I would though);
error: Error: ' docker build --ssh default ./app -t d2314cb1-container' failed with exit code 1
Any tips for using Docker buildkit to install private packages in a docker build? https://docs.docker.com/develop/develop-images/build_enhancements/#using-ssh-to-access-private-data-in-buildsmany-pencil-56466
06/04/2020, 7:28 AMnumerous-garage-30550
06/04/2020, 9:03 PMnumerous-garage-30550
06/04/2020, 9:25 PMbusy-soccer-65968
06/04/2020, 10:12 PM"[secret]"
and is there a way to disable it on fields? it's causing massive diffs. I'll thread an example.average-receptionist-65239
06/04/2020, 10:44 PMbored-keyboard-71346
06/05/2020, 4:10 AMbot
to integrate and post to the PR. The only way we've been able to get it to post anything is to turn on the COMMENT_ON_PR
flag (along with the GITHUB_TOKEN
)... but that results in the ugly pulumi --non-interactive preview
comment coming from github-actions
bot... Are those docs up-to-date, or are we missing something critical in the setup/configuration? I've confirmed that the GitHub App is installed, and has permissions (in GH) to our repository.salmon-cpu-94542
06/05/2020, 4:34 AMfuture-magazine-24902
06/05/2020, 12:59 PMgray-helicopter-10230
06/05/2020, 1:15 PMnumerous-garage-30550
06/05/2020, 3:55 PMazure.core.getClientConfig({}).then(current => current.objectId);
to enforce pulumi program to be fully hermetic, i.e. independent on the environment it runs in?numerous-garage-30550
06/05/2020, 6:13 PMlimited-carpenter-34991
06/05/2020, 6:41 PMable-beard-29160
06/05/2020, 6:59 PMpulumi state delete
?numerous-garage-30550
06/05/2020, 8:04 PMnumerous-garage-30550
06/05/2020, 8:04 PMable-beard-29160
06/05/2020, 8:10 PMpulumi preview --diff
work for this case?numerous-garage-30550
06/05/2020, 8:24 PMpulumi preview --diff
compares current pulumi program against the current state of the stack. This is useful and necessary, but I additionally want to have something else:
git checkput sunnyday
pulumi dumptostack -o /tmp/sunnyday.stack
git checkput rainyday
pulumi dumptostack -o /tmp/rainyday.stack
pulumi diffstacks /tmp/sunnyday.stack /tmp/rainyday.stack
or (which would probably fit into pulumi model more realistically):
pulumi stack init fake-rainyday
git checkput rainyday
pulumi fake-up --yes
git checkput sunnyday
pulumi preview -s fake-rainyday --diff
pulumi stack init empty-stack
git checkout rainyday
pulimi preview --diff -s empty-stack > /tmp/rainy.txt
git checkout sunnyday
pulimi preview --diff -s empty-stack > /tmp/sunny.txt
diff -p /tmp/{rainy,sunny}.txt
able-beard-29160
06/05/2020, 9:34 PM