You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/azuredisk/azuredisk_option.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,7 @@ type DriverOptions struct {
65
65
Endpointstring
66
66
DisableAVSetNodesbool
67
67
RemoveNotReadyTaintbool
68
+
NeverStopTaintRemovalbool
68
69
TaintRemovalInitialDelayInSecondsint64
69
70
MaxConcurrentFormatint64
70
71
ConcurrentFormatTimeoutint64
@@ -114,6 +115,7 @@ func (o *DriverOptions) AddFlags() *flag.FlagSet {
114
115
fs.StringVar(&o.Kubeconfig, "kubeconfig", "", "Absolute path to the kubeconfig file. Required only when running out of cluster.")
115
116
fs.BoolVar(&o.DisableAVSetNodes, "disable-avset-nodes", false, "disable DisableAvailabilitySetNodes in cloud config for controller")
116
117
fs.BoolVar(&o.RemoveNotReadyTaint, "remove-not-ready-taint", true, "remove NotReady taint from node when node is ready")
118
+
fs.BoolVar(&o.NeverStopTaintRemoval, "never-stop-taint-removal", true, "if true, taint removal will never stop, otherwise it will stop after the first successful removal")
117
119
fs.Int64Var(&o.TaintRemovalInitialDelayInSeconds, "taint-removal-initial-delay-seconds", 30, "initial delay in seconds for taint removal")
0 commit comments