docs/spec: document Helm uninstall wait behavior
Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
7d6c0f7c47
commit
ba35b00461
|
@ -433,6 +433,11 @@ type Uninstall struct {
|
||||||
// release as deleted, but retain the release history.
|
// release as deleted, but retain the release history.
|
||||||
// +optional
|
// +optional
|
||||||
KeepHistory bool `json:"keepHistory,omitempty"`
|
KeepHistory bool `json:"keepHistory,omitempty"`
|
||||||
|
|
||||||
|
// DisableWait disables waiting for all the resources to be deleted after
|
||||||
|
// a Helm uninstall is performed.
|
||||||
|
// +optional
|
||||||
|
DisableWait bool `json:"disableWait,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Kustomize Helm PostRenderer specification.
|
// Kustomize Helm PostRenderer specification.
|
||||||
|
@ -786,8 +791,8 @@ kubectl get all --all-namespaces \
|
||||||
|
|
||||||
### Disabling resource waiting
|
### Disabling resource waiting
|
||||||
|
|
||||||
For install, upgrade, and rollback actions resource waiting is enabled by default,
|
For install, upgrade, rollback, and uninstall actions resource waiting is
|
||||||
but can be disabled by setting `spec.<action>.disableWait`.
|
enabled by default, but can be disabled by setting `spec.<action>.disableWait`.
|
||||||
|
|
||||||
Waiting for jobs to complete is enabled by default,
|
Waiting for jobs to complete is enabled by default,
|
||||||
but can be disabled by setting `spec.<action>.disableWaitForJobs`.
|
but can be disabled by setting `spec.<action>.disableWaitForJobs`.
|
||||||
|
|
Loading…
Reference in New Issue