Commit 40a55b93 authored by Matt Butcher's avatar Matt Butcher Committed by GitHub

Merge pull request #1325 from technosophos/fix/1301-helm-help-consistency

fix(helm): make 'helm help' text punctuation consistent
parents bce805f6 7c096fb2
...@@ -59,9 +59,9 @@ Common actions from this point include: ...@@ -59,9 +59,9 @@ Common actions from this point include:
- helm list: list releases of charts - helm list: list releases of charts
Environment: Environment:
$HELM_HOME Set an alternative location for Helm files. By default, these are stored in ~/.helm $HELM_HOME set an alternative location for Helm files. By default, these are stored in ~/.helm
$HELM_HOST Set an alternative Tiller host. The format is host:port. $HELM_HOST set an alternative Tiller host. The format is host:port
$KUBECONFIG Set an alternate Kubernetes configuration file (default: "~/.kube/config"). $KUBECONFIG set an alternate Kubernetes configuration file (default "~/.kube/config")
` `
func newRootCmd(out io.Writer) *cobra.Command { func newRootCmd(out io.Writer) *cobra.Command {
...@@ -80,8 +80,8 @@ func newRootCmd(out io.Writer) *cobra.Command { ...@@ -80,8 +80,8 @@ func newRootCmd(out io.Writer) *cobra.Command {
} }
thost := os.Getenv(hostEnvVar) thost := os.Getenv(hostEnvVar)
p := cmd.PersistentFlags() p := cmd.PersistentFlags()
p.StringVar(&helmHome, "home", home, "location of your Helm config. Overrides $HELM_HOME.") p.StringVar(&helmHome, "home", home, "location of your Helm config. Overrides $HELM_HOME")
p.StringVar(&tillerHost, "host", thost, "address of tiller. Overrides $HELM_HOST.") p.StringVar(&tillerHost, "host", thost, "address of tiller. Overrides $HELM_HOST")
p.BoolVarP(&flagDebug, "debug", "", false, "enable verbose output") p.BoolVarP(&flagDebug, "debug", "", false, "enable verbose output")
rup := newRepoUpdateCmd(out) rup := newRepoUpdateCmd(out)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment