5

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?

Job Evers
  • 261

1 Answers1

1

You can list all available versions of a given chart (e.g. nginx) with the following command:

helm search repo nginx --versions

According to:

helm search repo --help

the --versions option is defined as:

-l, --versions      show the long listing, with each version of each chart on its
                    own line, for repositories you have added