From fe864ad699c774cacc61bbfc007366b00a083c34 Mon Sep 17 00:00:00 2001 From: Justin Scott Date: Thu, 9 Feb 2017 15:37:58 -0800 Subject: [PATCH] feat(helm): remove logging of tags/condition warnings to pass ci --- pkg/chartutil/requirements.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/chartutil/requirements.go b/pkg/chartutil/requirements.go index 3a31042d6..8865566e3 100644 --- a/pkg/chartutil/requirements.go +++ b/pkg/chartutil/requirements.go @@ -147,7 +147,7 @@ func ProcessRequirementsConditions(reqs *Requirements, cvals Values) { hasFalse = true } } else { - log.Printf("Warning: Condition path '%s' for chart %s returned non-bool value", c, r.Name) + //log.Printf("Warning: Condition path '%s' for chart %s returned non-bool value", c, r.Name) } } else if _, ok := err.(ErrNoValue); !ok { // this is a real error @@ -197,7 +197,7 @@ func ProcessRequirementsTags(reqs *Requirements, cvals Values) { hasFalse = true } } else { - log.Printf("Warning: Tag '%s' for chart %s returned non-bool value", k, r.Name) + //log.Printf("Warning: Tag '%s' for chart %s returned non-bool value", k, r.Name) } } }