Helm status: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=External= * https://helm.sh/docs/helm/#helm-status =Internal= * Helm Operations * Helm Concepts =...") |
|||
(5 intermediate revisions by the same user not shown) | |||
Line 8: | Line 8: | ||
=Overview= | =Overview= | ||
helm status <''release-name''> | |||
The command shows the status of a named release (last deployment time, Kubernetes namespace, [[Helm_Concepts#Release_State|release state]], list of resources, etc.: | |||
<syntaxhighlight lang='text'> | |||
NAME: web-app | |||
LAST DEPLOYED: Sat Aug 8 18:51:33 2020 | |||
NAMESPACE: apps | |||
STATUS: deployed | |||
REVISION: 1 | |||
TEST SUITE: None | |||
NOTES: | |||
;...' | |||
</syntaxhighlight> | |||
If the release whose name is specified does not exist, <code>helm status</code> displays a short error message at stderr and exist with 1: | |||
Error: release: not found | |||
=States= | |||
See: {{Internal|Helm_Concepts#Release_State|Release State}} |
Latest revision as of 03:43, 9 August 2020
External
Internal
Overview
helm status <release-name>
The command shows the status of a named release (last deployment time, Kubernetes namespace, release state, list of resources, etc.:
NAME: web-app
LAST DEPLOYED: Sat Aug 8 18:51:33 2020
NAMESPACE: apps
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
;...'
If the release whose name is specified does not exist, helm status
displays a short error message at stderr and exist with 1:
Error: release: not found
States
See: