From b3e1d57339bb43b0f64fbafdcd3c424c1335e15b Mon Sep 17 00:00:00 2001 From: Christian Schlotter Date: Mon, 27 Jan 2025 15:40:15 +0100 Subject: [PATCH] kubeadm: Promote ControlPlaneKubeletLocalMode feature gate to beta --- cmd/kubeadm/app/features/features.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/kubeadm/app/features/features.go b/cmd/kubeadm/app/features/features.go index bb5470dbbef..021640e7283 100644 --- a/cmd/kubeadm/app/features/features.go +++ b/cmd/kubeadm/app/features/features.go @@ -36,7 +36,7 @@ const ( RootlessControlPlane = "RootlessControlPlane" // WaitForAllControlPlaneComponents is expected to be alpha in v1.30 WaitForAllControlPlaneComponents = "WaitForAllControlPlaneComponents" - // ControlPlaneKubeletLocalMode is expected to be in alpha in v1.31, beta in v1.32 + // ControlPlaneKubeletLocalMode is expected to be in alpha in v1.31, beta in v1.33 ControlPlaneKubeletLocalMode = "ControlPlaneKubeletLocalMode" // NodeLocalCRISocket is expected to be in alpha in v1.32, beta in v1.33, ga in v1.35 NodeLocalCRISocket = "NodeLocalCRISocket" @@ -54,7 +54,7 @@ var InitFeatureGates = FeatureList{ " Once UserNamespacesSupport graduates to GA, kubeadm will start using it and RootlessControlPlane will be removed.", }, WaitForAllControlPlaneComponents: {FeatureSpec: featuregate.FeatureSpec{Default: false, PreRelease: featuregate.Alpha}}, - ControlPlaneKubeletLocalMode: {FeatureSpec: featuregate.FeatureSpec{Default: false, PreRelease: featuregate.Alpha}}, + ControlPlaneKubeletLocalMode: {FeatureSpec: featuregate.FeatureSpec{Default: true, PreRelease: featuregate.Beta}}, NodeLocalCRISocket: {FeatureSpec: featuregate.FeatureSpec{Default: false, PreRelease: featuregate.Alpha}}, }