kubeadm: remove the EXPERIMENTAL description from --rootfs

The global kubeadm --rootfs flag is now considered
non-experimental.
This commit is contained in:
Lubomir I. Ivanov 2024-04-18 15:54:42 +03:00
parent 77f7d1b89d
commit 142e077bcb

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