File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -71,12 +71,16 @@ type Controller struct {
71
71
// Setting EnableWarmup to true and NeedLeaderElection to false is a no-op as controllers without
72
72
// leader election do not wait on leader election to start their sources.
73
73
// Defaults to false.
74
+ //
75
+ // Note: This feature is currently in beta and subject to change.
76
+ // For more details, see: https://github.com/kubernetes-sigs/controller-runtime/issues/3220.
74
77
EnableWarmup * bool
75
78
76
79
// UsePriorityQueue configures the controllers queue to use the controller-runtime provided
77
80
// priority queue.
78
81
//
79
- // Note: This flag is disabled by default until a future version. It's currently in beta.
82
+ // Note: This flag is disabled by default until a future version. This feature is currently in beta.
83
+ // For more details, see: https://github.com/kubernetes-sigs/controller-runtime/issues/2374.
80
84
UsePriorityQueue * bool
81
85
82
86
// Logger is the logger controllers should use.
Original file line number Diff line number Diff line change @@ -91,7 +91,8 @@ type TypedOptions[request comparable] struct {
91
91
// UsePriorityQueue configures the controllers queue to use the controller-runtime provided
92
92
// priority queue.
93
93
//
94
- // Note: This flag is disabled by default until a future version. It's currently in beta.
94
+ // Note: This flag is disabled by default until a future version. This feature is currently in beta.
95
+ // For more details, see: https://github.com/kubernetes-sigs/controller-runtime/issues/2374.
95
96
UsePriorityQueue * bool
96
97
97
98
// EnableWarmup specifies whether the controller should start its sources when the manager is not
@@ -105,6 +106,9 @@ type TypedOptions[request comparable] struct {
105
106
// Setting EnableWarmup to true and NeedLeaderElection to false is a no-op as controllers without
106
107
// leader election do not wait on leader election to start their sources.
107
108
// Defaults to false.
109
+ //
110
+ // Note: This feature is currently in beta and subject to change.
111
+ // For more details, see: https://github.com/kubernetes-sigs/controller-runtime/issues/3220.
108
112
EnableWarmup * bool
109
113
110
114
// ReconciliationTimeout is used as the timeout passed to the context of each Reconcile call.
You can’t perform that action at this time.
0 commit comments