how can i list all available charts under a helm repo

5/3/2019

so lets say 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

-- uberrebu
kubernetes
kubernetes-helm

5 Answers

9/4/2019

To list all the available charts for a specific application, you can try below command:

  • Repository - stable
  • Application - sample-app

    helm search stable/sample-app -l

-- THIMIRA
Source: StackOverflow

8/9/2019

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/*
-- Margach Chris
Source: StackOverflow

5/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.

-- Jose Armesto
Source: StackOverflow

5/3/2019

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

-- harbinja
Source: StackOverflow

12/17/2019

you can do a "helm search repo" . I am using helm version.BuildInfo{Version:"v3.0.1"} Hope it helps

-- Sagar
Source: StackOverflow