From a98d358a27699f11e2d714b9d4df230d5a5e8901 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Pinson?= Date: Tue, 17 Jan 2023 14:49:08 +0100 Subject: [PATCH] Update internal/cli/cmd/clustermesh.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Tobias Klauser Signed-off-by: RaphaĆ«l Pinson --- internal/cli/cmd/clustermesh.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cli/cmd/clustermesh.go b/internal/cli/cmd/clustermesh.go index 387e53d299..630f973f0b 100644 --- a/internal/cli/cmd/clustermesh.go +++ b/internal/cli/cmd/clustermesh.go @@ -163,7 +163,7 @@ func newCmdClusterMeshStatus() *cobra.Command { cmd.Flags().BoolVar(¶ms.Wait, "wait", false, "Wait until status is successful") cmd.Flags().DurationVar(¶ms.WaitDuration, "wait-duration", 15*time.Minute, "Maximum time to wait") cmd.Flags().BoolVar(¶ms.SkipServiceCheck, "skip-service-check", false, "Do not require service IP of remote cluster to be available") - cmd.Flags().StringVarP(¶ms.Output, "output", "o", "summary", "Output format. One of: json, summary") + cmd.Flags().StringVarP(¶ms.Output, "output", "o", status.OutputSummary, "Output format. One of: json, summary") return cmd }