|
|
@ -96,8 +96,6 @@ func newFetchCmd(out io.Writer) *cobra.Command {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
f := cmd.Flags()
|
|
|
|
f := cmd.Flags()
|
|
|
|
f.StringVar(&fch.username, "username", "", "chart repository username")
|
|
|
|
|
|
|
|
f.StringVar(&fch.password, "password", "", "chart repository password")
|
|
|
|
|
|
|
|
f.BoolVar(&fch.untar, "untar", false, "if set to true, will untar the chart after downloading it")
|
|
|
|
f.BoolVar(&fch.untar, "untar", false, "if set to true, will untar the chart after downloading it")
|
|
|
|
f.StringVar(&fch.untardir, "untardir", ".", "if untar is specified, this flag specifies the name of the directory into which the chart is expanded")
|
|
|
|
f.StringVar(&fch.untardir, "untardir", ".", "if untar is specified, this flag specifies the name of the directory into which the chart is expanded")
|
|
|
|
f.BoolVar(&fch.verify, "verify", false, "verify the package against its signature")
|
|
|
|
f.BoolVar(&fch.verify, "verify", false, "verify the package against its signature")
|
|
|
@ -110,6 +108,8 @@ func newFetchCmd(out io.Writer) *cobra.Command {
|
|
|
|
f.StringVar(&fch.keyFile, "key-file", "", "identify HTTPS client using this SSL key file")
|
|
|
|
f.StringVar(&fch.keyFile, "key-file", "", "identify HTTPS client using this SSL key file")
|
|
|
|
f.StringVar(&fch.caFile, "ca-file", "", "verify certificates of HTTPS-enabled servers using this CA bundle")
|
|
|
|
f.StringVar(&fch.caFile, "ca-file", "", "verify certificates of HTTPS-enabled servers using this CA bundle")
|
|
|
|
f.BoolVar(&fch.devel, "devel", false, "use development versions, too. Equivalent to version '>0.0.0-0'. If --version is set, this is ignored.")
|
|
|
|
f.BoolVar(&fch.devel, "devel", false, "use development versions, too. Equivalent to version '>0.0.0-0'. If --version is set, this is ignored.")
|
|
|
|
|
|
|
|
f.StringVar(&fch.username, "username", "", "chart repository username")
|
|
|
|
|
|
|
|
f.StringVar(&fch.password, "password", "", "chart repository password")
|
|
|
|
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
}
|
|
|
|