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