Helm list: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(5 intermediate revisions by the same user not shown)
Line 9: Line 9:
{{Note|<center>Revised for Helm 3</center>}}
{{Note|<center>Revised for Helm 3</center>}}


The command lists releases that are deployed or failed. This behavior can be modified with the flags [[#--uninstalled|--uninstalled]] and [[#--all|--all]].
The command lists releases that are deployed or failed in the "default" namespace. This behavior can be modified with the flags [[#--uninstalled|--uninstalled]] and [[#--all|--all]]. To list releases from all namespaces see [[#--all-namespaces|--all-namespaces]].


  helm list|ls
  helm list|ls
Line 24: Line 24:
==<span id='Ordered_by_Date'></span>-d, --date==
==<span id='Ordered_by_Date'></span>-d, --date==
Show releases sorted by release date.
Show releases sorted by release date.
==Namespace Support==
===<span id='--all-namespaces'></span>-A|--all-namespaces===
Releases can be installed in arbitrary namespaces and this command list all releases in the kubernetes cluster, irrespective on namespace.
===<span id='--namespace'></span>-n|--namespace===
==--o|--output-format==
Prints the output in the specified format: table (default), json, yaml.

Revision as of 07:23, 27 June 2020

External

Internal

Overview


Revised for Helm 3


The command lists releases that are deployed or failed in the "default" namespace. This behavior can be modified with the flags --uninstalled and --all. To list releases from all namespaces see --all-namespaces.

helm list|ls

Options

--uninstalled

Shows uninstalled releases for which uninstallation was done with the --keep-history flag. By default, uninstallation removes historical information about the release.

helm list --uninstalled

--all

-d, --date

Show releases sorted by release date.

Namespace Support

-A|--all-namespaces

Releases can be installed in arbitrary namespaces and this command list all releases in the kubernetes cluster, irrespective on namespace.

-n|--namespace

--o|--output-format

Prints the output in the specified format: table (default), json, yaml.