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
At present the resizer has CSI call timeout value
taken as arg in form of `--csiTimeout` , however all
other sidecars have this parameter as `--timeout`.
This patch replaces `csiTimeout` to `timeout` value
NOTE: This is a breaking change, so we need a new release
Signed-off-by: Humble Chirammal <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,9 @@ Note that the external-resizer does not scale with more replicas. Only one exter
44
44
45
45
*`--leader-election-namespace`: Namespace where the leader election resource lives. Defaults to the pod namespace if not set.
46
46
47
-
*`--csiTimeout <duration>`: Timeout of all calls to CSI driver. It should be set to value that accommodates majority of `ControllerExpandVolume` calls. 15 seconds is used by default.
47
+
*`--csiTimeout <duration>`: ( Deprecated, use --timeout instead) Timeout of all calls to CSI driver. It should be set to value that accommodates majority of `ControllerExpandVolume` calls. 15 seconds is used by default.
48
+
49
+
*`--timeout <duration>`: Timeout of all calls to CSI driver. It should be set to value that accommodates majority of `ControllerExpandVolume` calls. 15 seconds is used by default.
48
50
49
51
*`--retry-interval-start`: The starting value of the exponential backoff for failures. 1 second is used by default.
retryIntervalStart=flag.Duration("retry-interval-start", time.Second, "Initial retry interval of failed volume resize. It exponentially increases with each failure, up to retry-interval-max.")
0 commit comments