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: cmd/manager/main.go
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,12 @@ func main() {
93
93
"The duration that non-leader candidates will wait after observing a leadership renewal until attempting to acquire leadership of a led but unrenewed leader slot. This is effectively the maximum duration that a leader can be stopped before it is replaced by another candidate. This is only applicable if leader election is enabled.",
94
94
)
95
95
96
+
maxConcurrentReconciles:=flag.Int(
97
+
"max-concurrent-reconciles",
98
+
1,
99
+
"Maximum number of concurrent reconciles per controller instance.",
0 commit comments