Skip to content

Commit

Permalink
fix: pass 'passCredentialsAll' as env-var to getter
Browse files Browse the repository at this point in the history
Signed-off-by: Mathias Neerup <github@mneerup.dk>
  • Loading branch information
Exchizz committed Apr 29, 2023
1 parent f28447c commit fa067ec
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/getter/plugingetter.go
Expand Up @@ -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
}

Expand Down

0 comments on commit fa067ec

Please sign in to comment.