1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

fix CR comment

This commit is contained in:
shivkumar dudhani 2020-02-10 13:01:40 -08:00
parent 34ad3a9a2b
commit f4c1973c36

View file

@ -32,7 +32,7 @@ func ValidateResourceWithPattern(ctx context.EvalInterface, resource, pattern in
// first pass we substitute all the JMESPATH substitution for the variable
// variable: {{<JMESPATH>}}
// if a JMESPATH fails, we dont return error but variable is substitured with nil and error log
pattern = variables.SubstituteVariables(ctx, patternCopy)
patternCopy = variables.SubstituteVariables(ctx, patternCopy)
path, err := validateResourceElement(resource, patternCopy, patternCopy, "/")
if err != nil {
return path, newValidatePatternError(Rulefailure, err.Error())