From 9ddb27a2081c0fb871c4143b822c4ed939c8e958 Mon Sep 17 00:00:00 2001 From: Thomas Runyon Date: Thu, 5 Jan 2023 09:29:36 -0500 Subject: [PATCH 1/2] Update cmd/helm/push.go Co-authored-by: souleb Signed-off-by: Thomas Runyon --- cmd/helm/push.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/push.go b/cmd/helm/push.go index 611b53e90..e68750e92 100644 --- a/cmd/helm/push.go +++ b/cmd/helm/push.go @@ -95,7 +95,7 @@ func newPushCmd(cfg *action.Configuration, out io.Writer) *cobra.Command { f.StringVar(&o.keyFile, "key-file", "", "identify registry client using this SSL key file") f.StringVar(&o.caFile, "ca-file", "", "verify certificates of HTTPS-enabled servers using this CA bundle") f.BoolVar(&o.insecureSkipTLSverify, "insecure-skip-tls-verify", false, "skip tls certificate checks for the chart upload") - f.BoolVar(&o.plainHTTP, "plain-http", false, "push charts to registry over http") + f.BoolVar(&o.plainHTTP, "plain-http", false, "use plain http for the chart upload") return cmd } From 4a231bd937e0b035ac3ab864d2801a42ab1c7a6d Mon Sep 17 00:00:00 2001 From: Thomas Runyon Date: Thu, 5 Jan 2023 09:29:45 -0500 Subject: [PATCH 2/2] Update cmd/helm/pull.go Co-authored-by: souleb Signed-off-by: Thomas Runyon --- cmd/helm/pull.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/pull.go b/cmd/helm/pull.go index 9d1c86be7..24c2a1c86 100644 --- a/cmd/helm/pull.go +++ b/cmd/helm/pull.go @@ -87,7 +87,7 @@ func newPullCmd(cfg *action.Configuration, out io.Writer) *cobra.Command { f.BoolVar(&client.VerifyLater, "prov", false, "fetch the provenance file, but don't perform verification") f.StringVar(&client.UntarDir, "untardir", ".", "if untar is specified, this flag specifies the name of the directory into which the chart is expanded") f.StringVarP(&client.DestDir, "destination", "d", ".", "location to write the chart. If this and untardir are specified, untardir is appended to this") - f.BoolVar(&client.PlainHTTP, "plain-http", false, "install charts from http registry") + f.BoolVar(&client.PlainHTTP, "plain-http", false, "use plain http for the chart download") addChartPathOptionsFlags(f, &client.ChartPathOptions) err := cmd.RegisterFlagCompletionFunc("version", func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {