From f309a0c7a65b0699abbb43f01fed6c5e42749412 Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Thu, 18 Apr 2024 15:46:34 +0300 Subject: [PATCH] kubeadm: remove the EXPERIMENTAL tag of the download-certs phase The phase was tagged as EXPERIMENTAL 5+ years ago. --- cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go b/cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go index ac5eac49f7f..c1dd8701596 100644 --- a/cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go +++ b/cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go @@ -141,7 +141,7 @@ func getControlPlanePreparePhaseFlags(name string) []string { func newControlPlanePrepareDownloadCertsSubphase() workflow.Phase { return workflow.Phase{ Name: "download-certs [api-server-endpoint]", - Short: fmt.Sprintf("[EXPERIMENTAL] Download certificates shared among control-plane nodes from the %s Secret", kubeadmconstants.KubeadmCertsSecret), + Short: fmt.Sprintf("Download certificates shared among control-plane nodes from the %s Secret", kubeadmconstants.KubeadmCertsSecret), Run: runControlPlanePrepareDownloadCertsPhaseLocal, InheritFlags: getControlPlanePreparePhaseFlags("download-certs"), }