github.com/cloudposse/helm@v2.2.3+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        --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    -o, --offset string   next release name in the list, used to offset from start value
    50    -r, --reverse         reverse the sort order
    51    -q, --short           output short (quiet) listing format
    52  ```
    53  
    54  ### Options inherited from parent commands
    55  
    56  ```
    57        --debug                     enable verbose output
    58        --home string               location of your Helm config. Overrides $HELM_HOME (default "~/.helm")
    59        --host string               address of tiller. Overrides $HELM_HOST
    60        --kube-context string       name of the kubeconfig context to use
    61        --tiller-namespace string   namespace of tiller (default "kube-system")
    62  ```
    63  
    64  ### SEE ALSO
    65  * [helm](helm.md)	 - The Helm package manager for Kubernetes.
    66  
    67  ###### Auto generated by spf13/cobra on 15-Jan-2017