Merge pull request #96812 from bboreham/comment-grace

Comment default behaviour of kubectl drain.GracePeriodSeconds
This commit is contained in:
Kubernetes Prow Robot
2021-01-21 08:25:02 -08:00
committed by GitHub

View File

@@ -46,10 +46,15 @@ const (
// Helper contains the parameters to control the behaviour of drainer
type Helper struct {
Ctx context.Context
Client kubernetes.Interface
Force bool
GracePeriodSeconds int
Ctx context.Context
Client kubernetes.Interface
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
IgnoreAllDaemonSets bool
Timeout time.Duration
DeleteEmptyDirData bool