Merge pull request #124375 from neolit123/1.31-remove-experimental-from-rootfs

kubeadm: remove the EXPERIMENTAL description from --rootfs
This commit is contained in:
Kubernetes Prow Robot 2024-04-18 13:05:35 -07:00 committed by GitHub
commit 0e39ca84dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -90,7 +90,7 @@ func AddKubernetesVersionFlag(fs *pflag.FlagSet, kubernetesVersion *string) {
func AddKubeadmOtherFlags(flagSet *pflag.FlagSet, rootfsPath *string) {
flagSet.StringVar(
rootfsPath, "rootfs", *rootfsPath,
"[EXPERIMENTAL] The path to the 'real' host root filesystem.",
"The path to the 'real' host root filesystem. This will cause kubeadm to chroot into the provided path.",
)
}