From 142e077bcb9526049108d44192543b50fd5e52cd Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Thu, 18 Apr 2024 15:54:42 +0300 Subject: [PATCH] kubeadm: remove the EXPERIMENTAL description from --rootfs The global kubeadm --rootfs flag is now considered non-experimental. --- cmd/kubeadm/app/cmd/options/generic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubeadm/app/cmd/options/generic.go b/cmd/kubeadm/app/cmd/options/generic.go index 37536b6e520..23220a5d23b 100644 --- a/cmd/kubeadm/app/cmd/options/generic.go +++ b/cmd/kubeadm/app/cmd/options/generic.go @@ -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.", ) }