mirror of
https://github.com/helm/helm.git
synced 2026-08-07 16:41:27 +00:00
fixed capitalization in a few help messages. (#7898)
Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
This commit is contained in:
@@ -52,7 +52,7 @@ func newCompletionCmd(out io.Writer) *cobra.Command {
|
||||
|
||||
cmd := &cobra.Command{
|
||||
Use: "completion SHELL",
|
||||
Short: "Generate autocompletions script for the specified shell (bash or zsh)",
|
||||
Short: "generate autocompletions script for the specified shell (bash or zsh)",
|
||||
Long: completionDesc,
|
||||
RunE: func(cmd *cobra.Command, args []string) error {
|
||||
return runCompletion(out, cmd, args)
|
||||
|
||||
@@ -71,7 +71,7 @@ func newCreateCmd(out io.Writer) *cobra.Command {
|
||||
},
|
||||
}
|
||||
|
||||
cmd.Flags().StringVarP(&o.starter, "starter", "p", "", "The name or absolute path to Helm starter scaffold")
|
||||
cmd.Flags().StringVarP(&o.starter, "starter", "p", "", "the name or absolute path to Helm starter scaffold")
|
||||
return cmd
|
||||
}
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@ func newEnvCmd(out io.Writer) *cobra.Command {
|
||||
|
||||
cmd := &cobra.Command{
|
||||
Use: "env",
|
||||
Short: "Helm client environment information",
|
||||
Short: "helm client environment information",
|
||||
Long: envHelp,
|
||||
Args: require.NoArgs,
|
||||
RunE: func(cmd *cobra.Command, args []string) error {
|
||||
|
||||
@@ -82,7 +82,7 @@ func newReleaseTestCmd(cfg *action.Configuration, out io.Writer) *cobra.Command
|
||||
|
||||
f := cmd.Flags()
|
||||
f.DurationVar(&client.Timeout, "timeout", 300*time.Second, "time to wait for any individual Kubernetes operation (like Jobs for hooks)")
|
||||
f.BoolVar(&outputLogs, "logs", false, "Dump the logs from test pods (this runs after all tests are complete, but before any cleanup)")
|
||||
f.BoolVar(&outputLogs, "logs", false, "dump the logs from test pods (this runs after all tests are complete, but before any cleanup)")
|
||||
|
||||
return cmd
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user