|
|
@ -59,7 +59,7 @@ type installCmd struct {
|
|
|
|
chartPath string
|
|
|
|
chartPath string
|
|
|
|
dryRun bool
|
|
|
|
dryRun bool
|
|
|
|
disableHooks bool
|
|
|
|
disableHooks bool
|
|
|
|
reuseName bool
|
|
|
|
replace bool
|
|
|
|
out io.Writer
|
|
|
|
out io.Writer
|
|
|
|
client helm.Interface
|
|
|
|
client helm.Interface
|
|
|
|
values *values
|
|
|
|
values *values
|
|
|
@ -98,7 +98,7 @@ func newInstallCmd(c helm.Interface, out io.Writer) *cobra.Command {
|
|
|
|
f.StringVar(&inst.namespace, "namespace", "default", "the namespace to install the release into")
|
|
|
|
f.StringVar(&inst.namespace, "namespace", "default", "the namespace to install the release into")
|
|
|
|
f.BoolVar(&inst.dryRun, "dry-run", false, "simulate an install")
|
|
|
|
f.BoolVar(&inst.dryRun, "dry-run", false, "simulate an install")
|
|
|
|
f.BoolVar(&inst.disableHooks, "no-hooks", false, "prevent hooks from running during install")
|
|
|
|
f.BoolVar(&inst.disableHooks, "no-hooks", false, "prevent hooks from running during install")
|
|
|
|
f.BoolVar(&inst.reuseName, "reuse-name", false, "force Tiller to re-use the given name, even if that name is already used. This is unsafe in production")
|
|
|
|
f.BoolVar(&inst.replace, "replace", false, "re-use the given name, even if that name is already used. This is unsafe in production")
|
|
|
|
f.Var(inst.values, "set", "set values on the command line. Separate values with commas: key1=val1,key2=val2")
|
|
|
|
f.Var(inst.values, "set", "set values on the command line. Separate values with commas: key1=val1,key2=val2")
|
|
|
|
return cmd
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -119,7 +119,7 @@ func (i *installCmd) run() error {
|
|
|
|
helm.ValueOverrides(rawVals),
|
|
|
|
helm.ValueOverrides(rawVals),
|
|
|
|
helm.ReleaseName(i.name),
|
|
|
|
helm.ReleaseName(i.name),
|
|
|
|
helm.InstallDryRun(i.dryRun),
|
|
|
|
helm.InstallDryRun(i.dryRun),
|
|
|
|
helm.InstallReuseName(i.reuseName),
|
|
|
|
helm.InstallReuseName(i.replace),
|
|
|
|
helm.InstallDisableHooks(i.disableHooks))
|
|
|
|
helm.InstallDisableHooks(i.disableHooks))
|
|
|
|
if err != nil {
|
|
|
|
if err != nil {
|
|
|
|
return prettyError(err)
|
|
|
|
return prettyError(err)
|
|
|
|