diff --git a/pkg/tmpl/context_funcs.go b/pkg/tmpl/context_funcs.go index d473c862..f8528a52 100644 --- a/pkg/tmpl/context_funcs.go +++ b/pkg/tmpl/context_funcs.go @@ -41,6 +41,9 @@ func (c *Context) createFuncMap() template.FuncMap { funcMap["exec"] = func(string, []interface{}, ...string) (string, error) { return "", nil } + funcMap["envExec"] = func(map[string]interface{}, string, []interface{}, ...string) (string, error) { + return "", nil + } funcMap["readFile"] = func(string) (string, error) { return "", nil }