kubeadm: remove AlphaDisclaimer for certs phases

This commit is contained in:
SataQiu 2023-10-12 15:11:12 +08:00
parent 3d1ac86013
commit adae1e33ea

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