Helm v3 cannot find my charts in private repo Helm v3 cannot find my charts in private repo kubernetes kubernetes

Helm v3 cannot find my charts in private repo


Thanks all for the answers but I've found the issue.My repository were using development version of the charts so I had something like this 1.0.0-pre.dev (Semantic Versioning 2.0.0).By default helm 3 does not look at non production charts.You have to set the flag -devel. something like:helm search repo mas/devops-openshift --devel


While migrating from helm 2 to helm 3 remove private repo and add it after migration, then run helm repo update to refresh repository file.

If the chart is available locally, run helm repo index <DIR> --url <your_repo_url> to create new index.yaml for this repository.Running helm env will show you the directory where the repository.yamlis located so check if the file is generated correctly.