feat(helm): better description for optional version flag

pull/1154/head
fibonacci1729 8 years ago
parent e42aa6c09c
commit 825d2abd8c

@ -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))

@ -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
}

Loading…
Cancel
Save