From c7194592802c2afb7dcd548e1a3d371fef232298 Mon Sep 17 00:00:00 2001 From: Christian Koeberl Date: Tue, 13 Nov 2018 14:07:29 +0100 Subject: [PATCH] fix(helm): using the yaml library gopkg.in/yaml.v2 Closes #4911 Signed-off-by: Christian Koeberl --- pkg/chartutil/dependencies.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/chartutil/dependencies.go b/pkg/chartutil/dependencies.go index fbb56ec28..2989647f0 100644 --- a/pkg/chartutil/dependencies.go +++ b/pkg/chartutil/dependencies.go @@ -19,7 +19,7 @@ import ( "log" "strings" - "github.com/ghodss/yaml" + yaml "gopkg.in/yaml.v2" "k8s.io/helm/pkg/chart" "k8s.io/helm/pkg/version"