kubeadm: remove the EXPERIMENTAL tag of the download-certs phase

The phase was tagged as EXPERIMENTAL 5+ years ago.
This commit is contained in:
Lubomir I. Ivanov 2024-04-18 15:46:34 +03:00
parent 77f7d1b89d
commit f309a0c7a6

View File

@ -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"),
}