Merge pull request #124374 from neolit123/1.31-remove-experimental-description-of-download-certs

kubeadm: remove the EXPERIMENTAL tag of the download-certs phase
This commit is contained in:
Kubernetes Prow Robot
2024-04-18 08:49:39 -07:00
committed by GitHub

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