From a58430a944454ff8e5a560a9d3d70f5e05385310 Mon Sep 17 00:00:00 2001 From: Anton Kvashenkin Date: Thu, 2 Jan 2020 19:32:50 +0400 Subject: [PATCH] Fix typo in --values cmd flag Fix a small typo in `--values` flag in `helm install/upgrade --help` output. Signed-off-by: Anton Kvashenkin --- cmd/helm/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/flags.go b/cmd/helm/flags.go index 467abbd6e..aa22603f4 100644 --- a/cmd/helm/flags.go +++ b/cmd/helm/flags.go @@ -31,7 +31,7 @@ import ( const outputFlag = "output" func addValueOptionsFlags(f *pflag.FlagSet, v *values.Options) { - f.StringSliceVarP(&v.ValueFiles, "values", "f", []string{}, "specify values in a YAML file or a URL(can specify multiple)") + f.StringSliceVarP(&v.ValueFiles, "values", "f", []string{}, "specify values in a YAML file or a URL (can specify multiple)") f.StringArrayVar(&v.Values, "set", []string{}, "set values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)") f.StringArrayVar(&v.StringValues, "set-string", []string{}, "set STRING values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)") f.StringArrayVar(&v.FileValues, "set-file", []string{}, "set values from respective files specified via the command line (can specify multiple or separate values with commas: key1=path1,key2=path2)")