Comment default behaviour of GracePeriodSeconds

It took me a while to spot this subtlety.

Signed-off-by: Bryan Boreham <bjboreham@gmail.com>

Kubernetes-commit: 7c764c8550121b48a6e2678700b6a80fa7d3e2f0
This commit is contained in:
Bryan Boreham 2020-11-23 17:46:14 +00:00 committed by Kubernetes Publisher
parent 13f5db2209
commit 40c811e2d9
1 changed files with 9 additions and 4 deletions

View File

@ -49,7 +49,12 @@ type Helper struct {
Ctx context.Context Ctx context.Context
Client kubernetes.Interface Client kubernetes.Interface
Force bool Force bool
// GracePeriodSeconds is how long to wait for a pod to terminate.
// IMPORTANT: 0 means "delete immediately"; set to a negative value
// to use the pod's terminationGracePeriodSeconds.
GracePeriodSeconds int GracePeriodSeconds int
IgnoreAllDaemonSets bool IgnoreAllDaemonSets bool
Timeout time.Duration Timeout time.Duration
DeleteEmptyDirData bool DeleteEmptyDirData bool