Merge pull request #1787 from nebril/improve-status-help

Improve `helm status` help text
pull/1790/head
Matt Butcher 8 years ago committed by GitHub
commit 35604f232f

@ -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