Azure Container Registry
An Azure service that provides a registry of Docker and Open Container Initiative images.
511 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
What is the right way to import a Helm chart to a private ACR. We can import containers (not Helm charts) using the az acr import
command. Is there an equivalent for Helm charts? I don't want to run a pipeline, pull and then push to the ACR. Is there another way?
Hi @Saminda
For helm3, charts in ACR is like a repository. Import should just work like you import an image:
az acr import -n test --source helm/hello-world:v1 -t helm/hello-world:v1 -r /subscriptions/111111111111/resourceGroups/test/providers/Microsoft.ContainerRegistry/registries/test
Please try and let me know if that helps.