mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
2.4 KiB
120 lines
2.4 KiB
.TH "HELM" "1" "Nov 2016" "Auto generated by spf13/cobra" ""
|
|
.nh
|
|
.ad l
|
|
|
|
|
|
.SH NAME
|
|
.PP
|
|
helm\-list \- list releases
|
|
|
|
|
|
.SH SYNOPSIS
|
|
.PP
|
|
\fBhelm list [flags] [FILTER]\fP
|
|
|
|
|
|
.SH DESCRIPTION
|
|
.PP
|
|
This command lists all of the releases.
|
|
|
|
.PP
|
|
By default, it lists only releases that are deployed or failed. Flags like
|
|
'\-\-delete' and '\-\-all' will alter this behavior. Such flags can be combined:
|
|
'\-\-deleted \-\-failed'.
|
|
|
|
.PP
|
|
By default, items are sorted alphabetically. Use the '\-d' flag to sort by
|
|
release date.
|
|
|
|
.PP
|
|
If an argument is provided, it will be treated as a filter. Filters are
|
|
regular expressions (Perl compatible) that are applied to the list of releases.
|
|
Only items that match the filter will be returned.
|
|
|
|
.PP
|
|
.RS
|
|
|
|
.nf
|
|
$ helm list 'ara[a\-z]+'
|
|
NAME UPDATED CHART
|
|
maudlin\-arachnid Mon May 9 16:07:08 2016 alpine\-0.1.0
|
|
|
|
.fi
|
|
.RE
|
|
|
|
.PP
|
|
If no results are found, 'helm list' will exit 0, but with no output (or in
|
|
the case of no '\-q' flag, only headers).
|
|
|
|
.PP
|
|
By default, up to 256 items may be returned. To limit this, use the '\-\-max' flag.
|
|
Setting '\-\-max' to 0 will not return all results. Rather, it will return the
|
|
server's default, which may be much higher than 256. Pairing the '\-\-max'
|
|
flag with the '\-\-offset' flag allows you to page through results.
|
|
|
|
|
|
.SH OPTIONS
|
|
.PP
|
|
\fB\-\-all\fP[=false]
|
|
show all releases, not just the ones marked DEPLOYED
|
|
|
|
.PP
|
|
\fB\-d\fP, \fB\-\-date\fP[=false]
|
|
sort by release date
|
|
|
|
.PP
|
|
\fB\-\-deleted\fP[=false]
|
|
show deleted releases
|
|
|
|
.PP
|
|
\fB\-\-deployed\fP[=false]
|
|
show deployed releases. If no other is specified, this will be automatically enabled
|
|
|
|
.PP
|
|
\fB\-\-failed\fP[=false]
|
|
show failed releases
|
|
|
|
.PP
|
|
\fB\-m\fP, \fB\-\-max\fP=256
|
|
maximum number of releases to fetch
|
|
|
|
.PP
|
|
\fB\-o\fP, \fB\-\-offset\fP=""
|
|
next release name in the list, used to offset from start value
|
|
|
|
.PP
|
|
\fB\-r\fP, \fB\-\-reverse\fP[=false]
|
|
reverse the sort order
|
|
|
|
.PP
|
|
\fB\-q\fP, \fB\-\-short\fP[=false]
|
|
output short (quiet) listing format
|
|
|
|
|
|
.SH OPTIONS INHERITED FROM PARENT COMMANDS
|
|
.PP
|
|
\fB\-\-debug\fP[=false]
|
|
enable verbose output
|
|
|
|
.PP
|
|
\fB\-\-home\fP="/Users/mattbutcher/Code/helm\_home"
|
|
location of your Helm config. Overrides $HELM\_HOME
|
|
|
|
.PP
|
|
\fB\-\-host\fP=""
|
|
address of tiller. Overrides $HELM\_HOST
|
|
|
|
.PP
|
|
\fB\-\-kube\-context\fP=""
|
|
name of the kubeconfig context to use
|
|
|
|
|
|
.SH SEE ALSO
|
|
.PP
|
|
\fBhelm(1)\fP
|
|
|
|
|
|
.SH HISTORY
|
|
.PP
|
|
1\-Nov\-2016 Auto generated by spf13/cobra
|