mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.9 KiB
75 lines
2.9 KiB
## helm list
|
|
|
|
list releases
|
|
|
|
### Synopsis
|
|
|
|
|
|
|
|
This command lists all of the releases.
|
|
|
|
By default, it lists only releases that are deployed or failed. Flags like
|
|
'--deleted' and '--all' will alter this behavior. Such flags can be combined:
|
|
'--deleted --failed'.
|
|
|
|
By default, items are sorted alphabetically. Use the '-d' flag to sort by
|
|
release date.
|
|
|
|
If an argument is provided, it will be treated as a filter. Filters are
|
|
regular expressions (Perl compatible) that are applied to the list of releases.
|
|
Only items that match the filter will be returned.
|
|
|
|
$ helm list 'ara[a-z]+'
|
|
NAME UPDATED CHART
|
|
maudlin-arachnid Mon May 9 16:07:08 2016 alpine-0.1.0
|
|
|
|
If no results are found, 'helm list' will exit 0, but with no output (or in
|
|
the case of no '-q' flag, only headers).
|
|
|
|
By default, up to 256 items may be returned. To limit this, use the '--max' flag.
|
|
Setting '--max' to 0 will not return all results. Rather, it will return the
|
|
server's default, which may be much higher than 256. Pairing the '--max'
|
|
flag with the '--offset' flag allows you to page through results.
|
|
|
|
|
|
```
|
|
helm list [flags] [FILTER]
|
|
```
|
|
|
|
### Options
|
|
|
|
```
|
|
-a, --all show all releases, not just the ones marked DEPLOYED
|
|
-d, --date sort by release date
|
|
--deleted show deleted releases
|
|
--deleting show releases that are currently being deleted
|
|
--deployed show deployed releases. If no other is specified, this will be automatically enabled
|
|
--failed show failed releases
|
|
-m, --max int maximum number of releases to fetch (default 256)
|
|
--namespace string show releases within a specific namespace
|
|
-o, --offset string next release name in the list, used to offset from start value
|
|
--pending show pending releases
|
|
-r, --reverse reverse the sort order
|
|
-q, --short output short (quiet) listing format
|
|
--tls enable TLS for request
|
|
--tls-ca-cert string path to TLS CA certificate file (default "$HELM_HOME/ca.pem")
|
|
--tls-cert string path to TLS certificate file (default "$HELM_HOME/cert.pem")
|
|
--tls-key string path to TLS key file (default "$HELM_HOME/key.pem")
|
|
--tls-verify enable TLS for request and verify remote
|
|
```
|
|
|
|
### Options inherited from parent commands
|
|
|
|
```
|
|
--debug enable verbose output
|
|
--home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm")
|
|
--host string address of Tiller. Overrides $HELM_HOST
|
|
--kube-context string name of the kubeconfig context to use
|
|
--tiller-namespace string namespace of Tiller (default "kube-system")
|
|
```
|
|
|
|
### SEE ALSO
|
|
* [helm](helm.md) - The Helm package manager for Kubernetes.
|
|
|
|
###### Auto generated by spf13/cobra on 12-Jul-2017
|