mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 03:11:40 +00:00
Merge pull request #96812 from bboreham/comment-grace
Comment default behaviour of kubectl drain.GracePeriodSeconds
This commit is contained in:
commit
c2ac8c360e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user