How can i list all available charts under a helm repo?

uberrebu picture uberrebu · May 3, 2019 · Viewed 13.1k times · Source

I have a helm repo:

helm repo list

NAME URL

stable https://kubernetes-charts.storage.googleapis.com

local http://127.0.0.1:8879/charts

and I want to list all the charts available or search the charts under stable helm repo.

How do I do this?

No command so far to list available charts under a helm repo or just verify that a chart exists.

Answer

Jose Armesto picture Jose Armesto · May 3, 2019

You can use helm search to search for Helm charts. There is an interesting option that you can pass to helm search that will let you use regex to search for Charts. That way, you can pass a regex that matches with any Chart name. For example

helm search -r ".*"

That will show all the Charts on all repositories.