For a helm chart, what versions are available?

6/25/2018

I can specify a specific version of a chart by doing: helm install --version <some_version> stable/<some_chart>

But, how do I know which versions are available?

-- jobevers
kubernetes
kubernetes-helm

3 Answers

6/25/2018

You can list the available versions of the chart by running the following command:

helm search -l stable/<some_chart>

The -l or --versions flag is used to display all and not only the latest version per chart.

Reference: https://helm.sh/docs/helm/#helm-search

-- Andreas Jägle
Source: StackOverflow

11/8/2019

If you are looking for a helm v3 solution this is it.

helm search repo -l stable/<some-chart>
-- Martin Naughton
Source: StackOverflow

2/28/2020

If you want also search for alpha, beta, release candidate version in helm 3 you can add options --devel

helm search repo <chart keyword> -l --devel 

it will also lists charts with version like 1.0.0-rc1

-- Slawomir Jaranowski
Source: StackOverflow