Several questions in this post. I'm using Azure Kubernetes service, and I have images in ACR.
When I use kubectl run my-pod --image my-acr/my-image
, does it use the image with latest tag, eg, my-acr/my-image:latest
.
When I push the image built locally, I do things like
- Build
my-image:v1
- Tag
my-image:v1
withmy-acr/my-image:latest
- Now, should I delete
my-acr/my-image:latest
from ACR first, then push it. Or I can directly do the push?