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?
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
If you are looking for a helm v3 solution this is it.
helm search repo -l stable/<some-chart>
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