From f2b7501e42c3cc83c6b88c8c39de49aaaa94f2c3 Mon Sep 17 00:00:00 2001 From: Antoine Pelisse Date: Wed, 23 Jan 2019 14:41:31 -0800 Subject: [PATCH] Mark the kubectl flag as alpha --- pkg/kubectl/cmd/util/helpers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/kubectl/cmd/util/helpers.go b/pkg/kubectl/cmd/util/helpers.go index e208e3537d2..7822948fcc7 100644 --- a/pkg/kubectl/cmd/util/helpers.go +++ b/pkg/kubectl/cmd/util/helpers.go @@ -401,8 +401,8 @@ func AddDryRunFlag(cmd *cobra.Command) { } func AddServerSideApplyFlags(cmd *cobra.Command) { - cmd.Flags().Bool("server-side", false, "If true, apply runs in the server instead of the client.") - cmd.Flags().Bool("force-conflicts", false, "If true, server-side apply will force the changes against conflicts.") + cmd.Flags().Bool("server-side", false, "If true, apply runs in the server instead of the client. This is an alpha feature and flag.") + cmd.Flags().Bool("force-conflicts", false, "If true, server-side apply will force the changes against conflicts. This is an alpha feature and flag.") } func AddIncludeUninitializedFlag(cmd *cobra.Command) {