Merge pull request #6692 from andyxning/add_string_split_function_to_template_funcMap

add string split function to template funcMap
This commit is contained in:
Kubernetes Prow Robot 2020-12-29 05:32:28 -08:00 committed by GitHub
commit 06cb6696a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -151,6 +151,7 @@ var (
"buildDenyVariable": buildDenyVariable,
"getenv": os.Getenv,
"contains": strings.Contains,
"split": strings.Split,
"hasPrefix": strings.HasPrefix,
"hasSuffix": strings.HasSuffix,
"trimSpace": strings.TrimSpace,