What is the recommended way to have Pulumi automat...
# general
f
What is the recommended way to have Pulumi automatically build and upload a Docker image to Azure to ultimately pass to a
azure.containerservice.Group
?
I can use
az acr login --name <acrName>
locally before running
pulumi up
with a
docker.Image
. Pretty gross hack IMO.
I have seen this example: https://github.com/pulumi/pulumi-docker/blob/master/examples/aws/index.ts. There doesn't seem to be an equivalent method for Azure though.
w
f
Great, thanks.