@@ -521,10 +521,17 @@ const (
521
521
522
522
// owner: @robscott @freehan
523
523
// alpha: v1.18
524
+ // beta: v1.19
524
525
//
525
526
// Enable Endpoint Slice consumption by kube-proxy for improved scalability.
526
527
EndpointSliceProxying featuregate.Feature = "EndpointSliceProxying"
527
528
529
+ // owner: @robscott @kumarvin123
530
+ // alpha: v1.19
531
+ //
532
+ // Enable Endpoint Slice consumption by kube-proxy in Windows for improved scalability.
533
+ WindowsEndpointSliceProxying featuregate.Feature = "WindowsEndpointSliceProxying"
534
+
528
535
// owner: @Huang-Wei
529
536
// alpha: v1.16
530
537
// beta: v1.18
@@ -687,7 +694,8 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
687
694
PodOverhead : {Default : true , PreRelease : featuregate .Beta },
688
695
IPv6DualStack : {Default : false , PreRelease : featuregate .Alpha },
689
696
EndpointSlice : {Default : true , PreRelease : featuregate .Beta },
690
- EndpointSliceProxying : {Default : false , PreRelease : featuregate .Alpha },
697
+ EndpointSliceProxying : {Default : true , PreRelease : featuregate .Beta },
698
+ WindowsEndpointSliceProxying : {Default : false , PreRelease : featuregate .Alpha },
691
699
EvenPodsSpread : {Default : true , PreRelease : featuregate .GA , LockToDefault : true }, // remove in 1.21
692
700
StartupProbe : {Default : true , PreRelease : featuregate .Beta },
693
701
AllowInsecureBackendProxy : {Default : true , PreRelease : featuregate .Beta },
0 commit comments