gray-belgium-81846
07/09/2021, 4:17 PMaws-ts-hello-fargate
example on an M1 mac. When running pulumi up
it never completes — the ECS service never gets healthy and is stuck in a death loop. This is due to building the docker container by default for arm64 arch instead of linux/amd64. I was able to modify the sample to specify the architecture in the docker build options and make progress.
However, I’m concerned about the behavior when attempting to deploy a bad container. I had to break out out of pulumi up
run pulumi stack export
and clean up the ECS service from pending operations, then re-import using pulumi stack import
. Even then when I ran pulumi destroy
I had to manually cleanup the ECS cluster using the console.
Is this expected behavior when a bad image is deployed?billowy-army-68599
07/09/2021, 4:39 PMgray-belgium-81846
07/11/2021, 6:22 PMaws-ts-hello-fargate
late-ocean-21308
10/04/2021, 9:39 PM