github.com/felipejfc/helm@v2.1.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 '--delete' 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 --all show all releases, not just the ones marked DEPLOYED 43 -d, --date sort by release date 44 --deleted show deleted releases 45 --deployed show deployed releases. If no other is specified, this will be automatically enabled 46 --failed show failed releases 47 -m, --max int maximum number of releases to fetch (default 256) 48 -o, --offset string next release name in the list, used to offset from start value 49 -r, --reverse reverse the sort order 50 -q, --short output short (quiet) listing format 51 ``` 52 53 ### Options inherited from parent commands 54 55 ``` 56 --debug enable verbose output 57 --home string location of your Helm config. Overrides $HELM_HOME (default "/Users/mattbutcher/Code/helm_home") 58 --host string address of tiller. Overrides $HELM_HOST 59 --kube-context string name of the kubeconfig context to use 60 ``` 61 62 ### SEE ALSO 63 * [helm](helm.md) - The Helm package manager for Kubernetes. 64 65 ###### Auto generated by spf13/cobra on 1-Nov-2016