From 7e7712449b3b31c934c656742b8a109aca9026f0 Mon Sep 17 00:00:00 2001 From: Angus Lees Date: Mon, 27 Aug 2018 12:33:55 +1000 Subject: [PATCH] Add "EXPERIMENTAL" to the option description --- cmd/kubeadm/app/cmd/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubeadm/app/cmd/cmd.go b/cmd/kubeadm/app/cmd/cmd.go index cf3481aac4d..97660a3b862 100644 --- a/cmd/kubeadm/app/cmd/cmd.go +++ b/cmd/kubeadm/app/cmd/cmd.go @@ -108,6 +108,6 @@ func NewKubeadmCommand(in io.Reader, out, err io.Writer) *cobra.Command { func AddKubeadmOtherFlags(flagSet *pflag.FlagSet, rootfsPath *string) { flagSet.StringVar( rootfsPath, "rootfs", *rootfsPath, - "The path to the 'real' host root filesystem.", + "[EXPERIMENTAL] The path to the 'real' host root filesystem.", ) }