mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-11 04:52:08 +00:00
remove GA feature gates in 1.28 about network
Signed-off-by: yulng <wei.yang@daocloud.io>
This commit is contained in:
parent
297dc976b9
commit
0dbeff4b6e
@ -258,15 +258,6 @@ const (
|
|||||||
// that is independent of a Pod.
|
// that is independent of a Pod.
|
||||||
DynamicResourceAllocation featuregate.Feature = "DynamicResourceAllocation"
|
DynamicResourceAllocation featuregate.Feature = "DynamicResourceAllocation"
|
||||||
|
|
||||||
// owner: @andrewsykim
|
|
||||||
// kep: https://kep.k8s.io/1672
|
|
||||||
// alpha: v1.20
|
|
||||||
// beta: v1.22
|
|
||||||
// GA: v1.26
|
|
||||||
//
|
|
||||||
// Enable Terminating condition in Endpoint Slices.
|
|
||||||
EndpointSliceTerminatingCondition featuregate.Feature = "EndpointSliceTerminatingCondition"
|
|
||||||
|
|
||||||
// owner: @harche
|
// owner: @harche
|
||||||
// kep: http://kep.k8s.io/3386
|
// kep: http://kep.k8s.io/3386
|
||||||
// alpha: v1.25
|
// alpha: v1.25
|
||||||
@ -557,15 +548,6 @@ const (
|
|||||||
// Enables new performance-improving code in kube-proxy iptables mode
|
// Enables new performance-improving code in kube-proxy iptables mode
|
||||||
MinimizeIPTablesRestore featuregate.Feature = "MinimizeIPTablesRestore"
|
MinimizeIPTablesRestore featuregate.Feature = "MinimizeIPTablesRestore"
|
||||||
|
|
||||||
// owner: @janosi @bridgetkromhout
|
|
||||||
// kep: https://kep.k8s.io/1435
|
|
||||||
// alpha: v1.20
|
|
||||||
// beta: v1.24
|
|
||||||
// ga: v1.26
|
|
||||||
//
|
|
||||||
// Enables the usage of different protocols in the same Service with type=LoadBalancer
|
|
||||||
MixedProtocolLBService featuregate.Feature = "MixedProtocolLBService"
|
|
||||||
|
|
||||||
// owner: @sarveshr7
|
// owner: @sarveshr7
|
||||||
// kep: https://kep.k8s.io/2593
|
// kep: https://kep.k8s.io/2593
|
||||||
// alpha: v1.25
|
// alpha: v1.25
|
||||||
@ -755,24 +737,6 @@ const (
|
|||||||
// https://github.com/kubernetes/kubernetes/issues/111516
|
// https://github.com/kubernetes/kubernetes/issues/111516
|
||||||
SecurityContextDeny featuregate.Feature = "SecurityContextDeny"
|
SecurityContextDeny featuregate.Feature = "SecurityContextDeny"
|
||||||
|
|
||||||
// owner: @maplain @andrewsykim
|
|
||||||
// kep: https://kep.k8s.io/2086
|
|
||||||
// alpha: v1.21
|
|
||||||
// beta: v1.22
|
|
||||||
// GA: v1.26
|
|
||||||
//
|
|
||||||
// Enables node-local routing for Service internal traffic
|
|
||||||
ServiceInternalTrafficPolicy featuregate.Feature = "ServiceInternalTrafficPolicy"
|
|
||||||
|
|
||||||
// owner: @aojea
|
|
||||||
// kep: https://kep.k8s.io/3070
|
|
||||||
// alpha: v1.24
|
|
||||||
// beta: v1.25
|
|
||||||
// ga: v1.26
|
|
||||||
//
|
|
||||||
// Subdivide the ClusterIP range for dynamic and static IP allocation.
|
|
||||||
ServiceIPStaticSubrange featuregate.Feature = "ServiceIPStaticSubrange"
|
|
||||||
|
|
||||||
// owner: @xuzhenglun
|
// owner: @xuzhenglun
|
||||||
// kep: http://kep.k8s.io/3682
|
// kep: http://kep.k8s.io/3682
|
||||||
// alpha: v1.27
|
// alpha: v1.27
|
||||||
@ -987,8 +951,6 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
|
|||||||
|
|
||||||
DownwardAPIHugePages: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in v1.29
|
DownwardAPIHugePages: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in v1.29
|
||||||
|
|
||||||
EndpointSliceTerminatingCondition: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in v1.28
|
|
||||||
|
|
||||||
DynamicResourceAllocation: {Default: false, PreRelease: featuregate.Alpha},
|
DynamicResourceAllocation: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
|
||||||
EventedPLEG: {Default: false, PreRelease: featuregate.Beta}, // off by default, requires CRI Runtime support
|
EventedPLEG: {Default: false, PreRelease: featuregate.Beta}, // off by default, requires CRI Runtime support
|
||||||
@ -1069,8 +1031,6 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
|
|||||||
|
|
||||||
MinimizeIPTablesRestore: {Default: true, PreRelease: featuregate.Beta},
|
MinimizeIPTablesRestore: {Default: true, PreRelease: featuregate.Beta},
|
||||||
|
|
||||||
MixedProtocolLBService: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.28
|
|
||||||
|
|
||||||
MultiCIDRRangeAllocator: {Default: false, PreRelease: featuregate.Alpha},
|
MultiCIDRRangeAllocator: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
|
||||||
MultiCIDRServiceAllocator: {Default: false, PreRelease: featuregate.Alpha},
|
MultiCIDRServiceAllocator: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
@ -1121,10 +1081,6 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
|
|||||||
|
|
||||||
SecurityContextDeny: {Default: false, PreRelease: featuregate.Alpha},
|
SecurityContextDeny: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
|
||||||
ServiceIPStaticSubrange: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.28
|
|
||||||
|
|
||||||
ServiceInternalTrafficPolicy: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.28
|
|
||||||
|
|
||||||
ServiceNodePortStaticSubrange: {Default: false, PreRelease: featuregate.Alpha},
|
ServiceNodePortStaticSubrange: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
|
||||||
SizeMemoryBackedVolumes: {Default: true, PreRelease: featuregate.Beta},
|
SizeMemoryBackedVolumes: {Default: true, PreRelease: featuregate.Beta},
|
||||||
|
Loading…
Reference in New Issue
Block a user