I have a helm repo:
helm repo list
NAME URL
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.
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.