Merge pull request #121172 from SataQiu/clean-kubeadm-20231012

kubeadm: remove AlphaDisclaimer for certs phases
This commit is contained in:
Kubernetes Prow Robot 2023-10-12 10:25:25 +02:00 committed by GitHub
commit 963178207a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,14 +39,15 @@ var (
saKeyLongDesc = fmt.Sprintf(cmdutil.LongDesc(` saKeyLongDesc = fmt.Sprintf(cmdutil.LongDesc(`
Generate the private key for signing service account tokens along with its public key, and save them into Generate the private key for signing service account tokens along with its public key, and save them into
%s and %s files. %s and %s files.
If both files already exist, kubeadm skips the generation step and existing files will be used. If both files already exist, kubeadm skips the generation step and existing files will be used.
`+cmdutil.AlphaDisclaimer), kubeadmconstants.ServiceAccountPrivateKeyName, kubeadmconstants.ServiceAccountPublicKeyName) `), kubeadmconstants.ServiceAccountPrivateKeyName, kubeadmconstants.ServiceAccountPublicKeyName)
genericLongDesc = cmdutil.LongDesc(` genericLongDesc = cmdutil.LongDesc(`
Generate the %[1]s, and save them into %[2]s.crt and %[2]s.key files.%[3]s Generate the %[1]s, and save them into %[2]s.crt and %[2]s.key files.%[3]s
If both files already exist, kubeadm skips the generation step and existing files will be used. If both files already exist, kubeadm skips the generation step and existing files will be used.
` + cmdutil.AlphaDisclaimer) `)
) )
// NewCertsPhase returns the phase for the certs // NewCertsPhase returns the phase for the certs