We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aab98a commit e6a5bcdCopy full SHA for e6a5bcd
cmd/kube-controller-manager/controller-manager.go
@@ -21,6 +21,8 @@ limitations under the License.
21
package main
22
23
import (
24
+ clientfeatures "k8s.io/client-go/features"
25
+ "k8s.io/utils/featuregates"
26
"os"
27
_ "time/tzdata" // for CronJob Time Zone support
28
@@ -32,6 +34,8 @@ import (
32
34
)
33
35
36
func main() {
37
+ clientfeatures.WatchListClient2.(featuregates.MutableFeatureGate).OverrideDefaultValue(true)
38
+
39
command := app.NewControllerManagerCommand()
40
code := cli.Run(command)
41
os.Exit(code)
0 commit comments