@@ -515,10 +515,17 @@ const (
515
515
516
516
// owner: @robscott @freehan
517
517
// alpha: v1.18
518
+ // beta: v1.19
518
519
//
519
520
// Enable Endpoint Slice consumption by kube-proxy for improved scalability.
520
521
EndpointSliceProxying featuregate.Feature = "EndpointSliceProxying"
521
522
523
+ // owner: @robscott @kumarvin123
524
+ // alpha: v1.19
525
+ //
526
+ // Enable Endpoint Slice consumption by kube-proxy in Windows for improved scalability.
527
+ WindowsEndpointSliceProxying featuregate.Feature = "WindowsEndpointSliceProxying"
528
+
522
529
// owner: @Huang-Wei
523
530
// alpha: v1.16
524
531
// beta: v1.18
@@ -680,7 +687,8 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
680
687
PodOverhead : {Default : true , PreRelease : featuregate .Beta },
681
688
IPv6DualStack : {Default : false , PreRelease : featuregate .Alpha },
682
689
EndpointSlice : {Default : true , PreRelease : featuregate .Beta },
683
- EndpointSliceProxying : {Default : false , PreRelease : featuregate .Alpha },
690
+ EndpointSliceProxying : {Default : true , PreRelease : featuregate .Beta },
691
+ WindowsEndpointSliceProxying : {Default : false , PreRelease : featuregate .Alpha },
684
692
EvenPodsSpread : {Default : true , PreRelease : featuregate .GA , LockToDefault : true }, // remove in 1.21
685
693
StartupProbe : {Default : true , PreRelease : featuregate .Beta },
686
694
AllowInsecureBackendProxy : {Default : true , PreRelease : featuregate .Beta },
0 commit comments