From 825d2abd8c025c2dec4b6d932b5db7e72f3d944c Mon Sep 17 00:00:00 2001 From: fibonacci1729 Date: Mon, 12 Sep 2016 09:25:42 -0600 Subject: [PATCH] feat(helm): better description for optional version flag --- cmd/helm/get.go | 2 +- cmd/helm/status.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/helm/get.go b/cmd/helm/get.go index 3a2fddb8d..3c8beb26f 100644 --- a/cmd/helm/get.go +++ b/cmd/helm/get.go @@ -73,7 +73,7 @@ func newGetCmd(client helm.Interface, out io.Writer) *cobra.Command { }, } - cmd.PersistentFlags().Int32Var(&get.version, "version", 0, "version of release") + cmd.PersistentFlags().Int32Var(&get.version, "version", 0, "get the named release with version") cmd.AddCommand(newGetValuesCmd(nil, out)) cmd.AddCommand(newGetManifestCmd(nil, out)) diff --git a/cmd/helm/status.go b/cmd/helm/status.go index 2f9cfc032..356fdcb7d 100644 --- a/cmd/helm/status.go +++ b/cmd/helm/status.go @@ -60,7 +60,7 @@ func newStatusCmd(client helm.Interface, out io.Writer) *cobra.Command { }, } - cmd.PersistentFlags().Int32Var(&status.version, "version", 0, "version of release") + cmd.PersistentFlags().Int32Var(&status.version, "version", 0, "If set, display the status of the named release with version") return cmd }