Helm version: 3.6.1
Following steps are successful with ACR, adding remote chart repo:
helm repo add myrepo https://myrepo.azurecr.io/helm/v1/repo --username "..." --password "..."
helm search repo myrepo
--> lists the available chart repos
But as soon as I try to install a chart with same credentials: (same for helm pull
)
helm install myhelmtest mytest/testchart --username "..." --password "..." --debug
It would result in:
[debug] failed to fetch https://myrepo.azurecr.io/helm/v1/repo/_blobs/testchart-0.1.0.tgz : 401 Unauthorized
I also tried a successful helm registry login
with same credentials beforehand, but it had no effect on above commands.
Any suggestions/ideas?