github.com/koderover/helm@v2.17.0+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 of the kubeconfig file to be used
    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 16-May-2019