github.com/darkowlzz/helm@v2.5.1-0.20171213183701-6707fe0468d4+incompatible/docs/helm/helm_list.md (about) 1 ## helm list 2 3 list releases 4 5 ### Synopsis 6 7 8 9 This command lists all of the releases. 10 11 By default, it lists only releases that are deployed or failed. Flags like 12 '--deleted' and '--all' will alter this behavior. Such flags can be combined: 13 '--deleted --failed'. 14 15 By default, items are sorted alphabetically. Use the '-d' flag to sort by 16 release date. 17 18 If an argument is provided, it will be treated as a filter. Filters are 19 regular expressions (Perl compatible) that are applied to the list of releases. 20 Only items that match the filter will be returned. 21 22 $ helm list 'ara[a-z]+' 23 NAME UPDATED CHART 24 maudlin-arachnid Mon May 9 16:07:08 2016 alpine-0.1.0 25 26 If no results are found, 'helm list' will exit 0, but with no output (or in 27 the case of no '-q' flag, only headers). 28 29 By default, up to 256 items may be returned. To limit this, use the '--max' flag. 30 Setting '--max' to 0 will not return all results. Rather, it will return the 31 server's default, which may be much higher than 256. Pairing the '--max' 32 flag with the '--offset' flag allows you to page through results. 33 34 35 ``` 36 helm list [flags] [FILTER] 37 ``` 38 39 ### Options 40 41 ``` 42 -a, --all show all releases, not just the ones marked DEPLOYED 43 -d, --date sort by release date 44 --deleted show deleted releases 45 --deleting show releases that are currently being deleted 46 --deployed show deployed releases. If no other is specified, this will be automatically enabled 47 --failed show failed releases 48 -m, --max int maximum number of releases to fetch (default 256) 49 --namespace string show releases within a specific namespace 50 -o, --offset string next release name in the list, used to offset from start value 51 --pending show pending releases 52 -r, --reverse reverse the sort order 53 -q, --short output short (quiet) listing format 54 --tls enable TLS for request 55 --tls-ca-cert string path to TLS CA certificate file (default "$HELM_HOME/ca.pem") 56 --tls-cert string path to TLS certificate file (default "$HELM_HOME/cert.pem") 57 --tls-key string path to TLS key file (default "$HELM_HOME/key.pem") 58 --tls-verify enable TLS for request and verify remote 59 ``` 60 61 ### Options inherited from parent commands 62 63 ``` 64 --debug enable verbose output 65 --home string location of your Helm config. Overrides $HELM_HOME (default "~/.helm") 66 --host string address of Tiller. Overrides $HELM_HOST 67 --kube-context string name of the kubeconfig context to use 68 --kubeconfig string path to kubeconfig file. Overrides $KUBECONFIG 69 --tiller-namespace string namespace of Tiller (default "kube-system") 70 ``` 71 72 ### SEE ALSO 73 * [helm](helm.md) - The Helm package manager for Kubernetes. 74 75 ###### Auto generated by spf13/cobra on 7-Nov-2017