so lets say 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
To list all the available charts for a specific application, you can try below command:
Application - sample-app
helm search stable/sample-app -l
Add the repo and search it:
$helm add <repo> <repo url>
$helm search --regexp <repo>/*
Replace repo with the repo you want to search, say jetstack
$ helm search --regexp jetstack/*
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.
I believe you're looking for:
helm search
In your case
helm search stable
or
helm search local
EDIT: Doc link: https://helm.sh/docs/using_helm/#helm-search-finding-charts
you can do a "helm search repo" . I am using helm version.BuildInfo{Version:"v3.0.1"} Hope it helps