From 5e33c62d4cbd9e885ef91fc1cafe7a85a866d2de Mon Sep 17 00:00:00 2001 From: Jim Bugwadia Date: Tue, 26 Oct 2021 14:24:41 -0700 Subject: [PATCH] fmt Signed-off-by: Jim Bugwadia --- pkg/kyverno/common/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kyverno/common/common.go b/pkg/kyverno/common/common.go index 298cd2345e..def5a92238 100644 --- a/pkg/kyverno/common/common.go +++ b/pkg/kyverno/common/common.go @@ -257,7 +257,7 @@ func PolicyHasNonAllowedVariables(policy v1.ClusterPolicy) error { matchesAll := RegexVariables.FindAllStringSubmatch(string(ruleJSON), -1) matchesAllowed := AllowedVariables.FindAllStringSubmatch(string(ruleJSON), -1) - if (len(matchesAll) > len(matchesAllowed)) && len(rule.Context) == 0 { + if (len(matchesAll) > len(matchesAllowed)) && len(rule.Context) == 0 { allowed := "{{request.*}}, {{element.*}}, {{serviceAccountName}}, {{serviceAccountNamespace}}, {{@}}, and context variables" return fmt.Errorf("rule \"%s\" has forbidden variables. Allowed variables are: %s", rule.Name, allowed) }