Private Azure Container Registry (ACR) Importing a helm chart

Saminda 26 Reputation points
2022-09-27T01:59:45.127+00:00

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?

Azure Container Registry
Azure Container Registry
An Azure service that provides a registry of Docker and Open Container Initiative images.
511 questions
Azure Kubernetes Service
Azure Kubernetes Service
An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.
2,457 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. KarishmaTiwari-MSFT 20,777 Reputation points Microsoft Employee Moderator
    2022-09-28T18:51:44.777+00:00

    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.

    1 person found this answer helpful.

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.