external-secrets/kubernetes-external-secrets

dependency fails with chart not found

jonjesse opened this issue · 2 comments

I have the following dependency listed in my dependency file:

  - name: external-secrets
    version: "8.1.3"
    repository: "@external-secrets"

Helm repo installed:

helm repo list
NAME            	URL                                                           
external-secrets	https://external-secrets.github.io/kubernetes-external-secrets

When I try to update the dependencies, I get the following:

 helm dependency update ./airflow/.
Getting updates for unmanaged Helm repositories...
...OMIT...
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "external-secrets" chart repository
Update Complete. ⎈Happy Helming!⎈
Error: external-secrets chart not found in repo https://external-secrets.github.io/kubernetes-external-secrets

The chart name is kubernetes-external-secrets looks like you are trying to resolve external-secrets/external-secrets instead of external-secrets/kubernetes-external-secrets

Thank you, that fixed the issue!