You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should be a simple change in main.go from parsedTemplate, err := template.New("test").Parse(templateText) to parsedTemplate, err := template.New("test").Funcs(sprig.TxtFuncMap()).Parse(templateText) as done in vela-template-tester
The text was updated successfully, but these errors were encountered:
Should be a simple change in main.go from
parsedTemplate, err := template.New("test").Parse(templateText)
toparsedTemplate, err := template.New("test").Funcs(sprig.TxtFuncMap()).Parse(templateText)
as done in vela-template-testerThe text was updated successfully, but these errors were encountered: