fix: pass 'passCredentialsAll' as env-var to getter

Signed-off-by: Mathias Neerup <github@mneerup.dk>
pull/11878/head
Mathias Neerup 1 year ago
parent f28447c73d
commit fa067ec16c

@ -66,6 +66,7 @@ type pluginGetter struct {
func (p *pluginGetter) setupOptionsEnv(env []string) []string {
env = append(env, fmt.Sprintf("HELM_PLUGIN_USERNAME=%s", p.opts.username))
env = append(env, fmt.Sprintf("HELM_PLUGIN_PASSWORD=%s", p.opts.password))
env = append(env, fmt.Sprintf("HELM_PLUGIN_PASS_CREDENTIALS_ALL=%t", p.opts.passCredentialsAll))
return env
}

Loading…
Cancel
Save