diff --git a/pkg/manifests/template/utils.go b/pkg/manifests/template/utils.go index 69601781..6850cdda 100644 --- a/pkg/manifests/template/utils.go +++ b/pkg/manifests/template/utils.go @@ -33,15 +33,6 @@ func nindent(v string, spaces int) string { return "\n" + indent(v, spaces) } -func coalesce(v ...interface{}) interface{} { - for _, val := range v { - if !empty(val) { - return val - } - } - return nil -} - func ternary(v bool, vt interface{}, vf interface{}) interface{} { if v { return vt