From 04438aa6f8e3c50519b99156087f227bfe850a6a Mon Sep 17 00:00:00 2001 From: Swati Sehgal Date: Mon, 27 Feb 2023 14:37:06 +0000 Subject: [PATCH] node: topologymgr: Graduate Kubelet Topology Manager to GA Signed-off-by: Swati Sehgal --- pkg/features/kube_features.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go index 7f57eb5a326..5a9b7ae3cf2 100644 --- a/pkg/features/kube_features.go +++ b/pkg/features/kube_features.go @@ -757,9 +757,10 @@ const ( // Enables topology aware hints for EndpointSlices TopologyAwareHints featuregate.Feature = "TopologyAwareHints" - // owner: @lmdaly + // owner: @lmdaly, @swatisehgal (for GA graduation) // alpha: v1.16 // beta: v1.18 + // GA: v1.27 // // Enable resource managers to make NUMA aligned decisions TopologyManager featuregate.Feature = "TopologyManager" @@ -1059,7 +1060,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS TopologyAwareHints: {Default: true, PreRelease: featuregate.Beta}, - TopologyManager: {Default: true, PreRelease: featuregate.Beta}, + TopologyManager: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // GA in 1.27; remove in 1.29 TopologyManagerPolicyAlphaOptions: {Default: false, PreRelease: featuregate.Alpha},