Commit fe864ad6 authored by Justin Scott's avatar Justin Scott

feat(helm): remove logging of tags/condition warnings to pass ci

parent 58c8aca1
......@@ -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)
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment