Improve `helm status` help text

`helm status -h` now shows what kind of information is displayed when
running `helm status`
pull/1787/head
Maciej Kwiek 8 years ago
parent 8824eabfee
commit 0a9413beef

@ -29,6 +29,12 @@ import (
var statusHelp = `
This command shows the status of a named release.
The status consists of:
- last deployment time
- k8s namespace in which the release lives
- state of the release (can be: UNKNOWN, DEPLOYED, DELETED, SUPERSEDED, FAILED or DELETING)
- list of resources that this release consists of, sorted by kind
- additional notes provided by the chart
`
type statusCmd struct {

@ -7,6 +7,12 @@ displays the status of the named release
This command shows the status of a named release.
The status consists of:
- last deployment time
- k8s namespace in which the release lives
- state of the release (can be: UNKNOWN, DEPLOYED, DELETED, SUPERSEDED, FAILED or DELETING)
- list of resources that this release consists of, sorted by kind
- additional notes provided by the chart
```

@ -16,6 +16,12 @@ helm\-status \- displays the status of the named release
.SH DESCRIPTION
.PP
This command shows the status of a named release.
The status consists of:
- last deployment time
- k8s namespace in which the release lives
- state of the release (can be: UNKNOWN, DEPLOYED, DELETED, SUPERSEDED, FAILED or DELETING)
- list of resources that this release consists of, sorted by kind
- additional notes provided by the chart
.SH OPTIONS

Loading…
Cancel
Save