I'm following this guide on how to "Push and pull Helm charts to an Azure container registry".
So I've pushed a chart to ACR. I can see that it's there, both via the Azure UI and
az acr repository show \
--name mycontainerregistry \
--repository helm/hello-world
Is there a repository URL that I can use to configure others (in this case Flux v2) to pull charts from? I thought it might be https://mycontainerregistry.azurecr.io/helm/v1/repo/index.yaml
, but it doesn't list the chart that I pushed.
What do I have to do to add my charts to the index.yaml
, or should I use another URL?
Edit
I just realized that https://mycontainerregistry.azurecr.io/helm/v1/repo/index.yaml
will show the charts pushed via az acr helm push
commands. So maybe that URL is something else?