From 913f60a8f44538cece05cfbbda8d99c681e08a63 Mon Sep 17 00:00:00 2001 From: cmoulliard Date: Thu, 19 Dec 2024 18:22:15 +0100 Subject: [PATCH] Improve the description of the flag: outputFormat to mention the 3 formats supported Signed-off-by: cmoulliard --- pkg/cmd/get/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/get/root.go b/pkg/cmd/get/root.go index 23ea8c15..88d95545 100644 --- a/pkg/cmd/get/root.go +++ b/pkg/cmd/get/root.go @@ -22,7 +22,7 @@ func init() { GetCmd.AddCommand(ClustersCmd) GetCmd.AddCommand(SecretsCmd) GetCmd.PersistentFlags().StringSliceVarP(&packages, "packages", "p", []string{}, "names of packages.") - GetCmd.PersistentFlags().StringVarP(&outputFormat, "output", "o", "", "Output format. table or json.") + GetCmd.PersistentFlags().StringVarP(&outputFormat, "output", "o", "", "Output format: table (default if not specified), json or yaml.") GetCmd.PersistentFlags().StringVarP(&helpers.KubeConfigPath, "kubeconfig", "", "", "kube config file Path.") }