Comment default behaviour of GracePeriodSeconds

It took me a while to spot this subtlety.

Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
This commit is contained in:
Bryan Boreham 2020-11-23 17:46:14 +00:00
parent 540e41c825
commit 7c764c8550

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