Hi, I am trying to ACR as helm repo with an alias.
Seems like the repo added successfully, but any attempt to search or pull fails.
$ az acr helm repo add --name $ACR_NAME --resource-group rnd-devops --username $USER_NAME --password $PASSWORD
Argument 'resource_group_name' has been deprecated and will be removed in a future release.
This command is implicitly deprecated because command group 'acr helm' is deprecated and will be removed in a future release. Use 'helm v3' instead.
"<$ACR_NAME>" has been added to your repositories
$ echo $ACR_NAME
<$ACR_NAME>
$ helm repo list
NAME URL
<$ACR_NAME> https://<$ACR_NAME>.azurecr.io/helm/v1/repo
$ helm search repo $ACR_NAME
No results found
$ helm repo update
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "<$ACR_NAME>" chart repository
Update Complete. ⎈Happy Helming!⎈
$ helm search repo $ACR_NAME
No results found
$ helm pull $ACR_NAME/helm/core-services/elasticsearch --version 7.16.3
Error: chart "helm/core-services/elasticsearch" matching 7.16.3 not found in <$ACR_NAME> index. (try 'helm repo update'): no chart name found
$ helm version
version.BuildInfo{Version:"v3.8.0", GitCommit:"d14138609b01886f544b2025f5000351c9eb092e", GitTreeState:"clean", GoVersion:"go1.17.5"}
thanks.