From bcbc3875bde170cb00221e8b716562d7a02840b2 Mon Sep 17 00:00:00 2001 From: Adam Reese Date: Sat, 16 Mar 2019 23:44:42 -0700 Subject: [PATCH] fix(pkg/action): action log must be initialized Fixes panic from calling Log. Signed-off-by: Adam Reese --- cmd/helm/helm.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/helm/helm.go b/cmd/helm/helm.go index 3a780da21..199b8f369 100644 --- a/cmd/helm/helm.go +++ b/cmd/helm/helm.go @@ -94,6 +94,7 @@ func newActionConfig(allNamespaces bool) *action.Configuration { KubeClient: kc, Releases: store, Discovery: clientset.Discovery(), + Log: logf, } }