github.com/vtuson/helm@v2.8.2+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 --col-width uint specifies the max column width of output (default 60) 44 -d, --date sort by release date 45 --deleted show deleted releases 46 --deleting show releases that are currently being deleted 47 --deployed show deployed releases. If no other is specified, this will be automatically enabled 48 --failed show failed releases 49 -m, --max int maximum number of releases to fetch (default 256) 50 --namespace string show releases within a specific namespace 51 -o, --offset string next release name in the list, used to offset from start value 52 --pending show pending releases 53 -r, --reverse reverse the sort order 54 -q, --short output short (quiet) listing format 55 --tls enable TLS for request 56 --tls-ca-cert string path to TLS CA certificate file (default "$HELM_HOME/ca.pem") 57 --tls-cert string path to TLS certificate file (default "$HELM_HOME/cert.pem") 58 --tls-key string path to TLS key file (default "$HELM_HOME/key.pem") 59 --tls-verify enable TLS for request and verify remote 60 ``` 61 62 ### Options inherited from parent commands 63 64 ``` 65 --debug enable verbose output 66 --home string location of your Helm config. Overrides $HELM_HOME (default "~/.helm") 67 --host string address of Tiller. Overrides $HELM_HOST 68 --kube-context string name of the kubeconfig context to use 69 --tiller-connection-timeout int the duration (in seconds) Helm will wait to establish a connection to tiller (default 300) 70 --tiller-namespace string namespace of Tiller (default "kube-system") 71 ``` 72 73 ### SEE ALSO 74 * [helm](helm.md) - The Helm package manager for Kubernetes. 75 76 ###### Auto generated by spf13/cobra on 8-Mar-2018