diff --git a/util/helm/helm.go b/util/helm/helm.go index caecf465f0d3c..292d1f4dd4033 100644 --- a/util/helm/helm.go +++ b/util/helm/helm.go @@ -191,6 +191,7 @@ func (h *helm) helmCmd(args ...string) (string, error) { func (h *helm) helmCmdExt(args []string, logFormat func(string) string) (string, error) { cmd := exec.Command("helm", args...) + cmd.Env = os.Environ() cmd.Dir = h.path if h.home != "" { cmd.Env = append(cmd.Env, fmt.Sprintf("HELM_HOME=%s", h.home))