diff --git a/pkg/kyverno/common/common.go b/pkg/kyverno/common/common.go index 7dbe89513a..67b9392e55 100644 --- a/pkg/kyverno/common/common.go +++ b/pkg/kyverno/common/common.go @@ -750,6 +750,9 @@ func ProcessValidateEngineResponse(policy *v1.ClusterPolicy, validateResponse *r printCount := 0 for _, policyRule := range policy.Spec.Rules { ruleFoundInEngineResponse := false + if !policyRule.HasValidate() { + continue + } for i, valResponseRule := range validateResponse.PolicyResponse.Rules { if policyRule.Name == valResponseRule.Name { diff --git a/test/cli/test/mixed/kyverno-test.yaml b/test/cli/test/mixed/kyverno-test.yaml new file mode 100644 index 0000000000..e4a38f2051 --- /dev/null +++ b/test/cli/test/mixed/kyverno-test.yaml @@ -0,0 +1,32 @@ +name: ondemand +policies: + - policy.yaml +resources: + - resource.yaml +results: + - policy: ondemand + rule: ondemand-nodeselector + resource: nodeselector-with-labels-on-mutation + patchedResource: patched-resource.yaml + namespace: user-space + kind: Pod + result: pass + - policy: ondemand + rule: ondemand-managed_by + resource: nodeselector-with-labels-on-mutation + namespace: user-space + kind: Pod + result: pass + - policy: ondemand + rule: ondemand-nodeselector + resource: nodeselector-without-labels-on-mutation + patchedResource: patched-resource1.yaml + namespace: user-foo + kind: Pod + result: skip + - policy: ondemand + rule: ondemand-managed_by + resource: nodeselector-without-labels-on-mutation + namespace: user-foo + kind: Pod + result: fail \ No newline at end of file diff --git a/test/cli/test/mixed/patched-resource.yaml b/test/cli/test/mixed/patched-resource.yaml new file mode 100644 index 0000000000..fb07e70fd3 --- /dev/null +++ b/test/cli/test/mixed/patched-resource.yaml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Pod +metadata: + labels: + app.kubernetes.io/managed-by: open-ondemand + name: nodeselector-with-labels-on-mutation + namespace: user-space +spec: + containers: + - image: nginx:latest + name: nginx + nodeSelector: + osc.edu/role: ondemand diff --git a/test/cli/test/mixed/patched-resource1.yaml b/test/cli/test/mixed/patched-resource1.yaml new file mode 100644 index 0000000000..d7e6415eee --- /dev/null +++ b/test/cli/test/mixed/patched-resource1.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: Pod +metadata: + name: nodeselector-without-labels-on-mutation + labels: + app.kubernetes.io/managed-by: "open-xyz" + namespace: user-foo +spec: + containers: + - name: nginx + image: nginx:latest diff --git a/test/cli/test/mixed/policy.yaml b/test/cli/test/mixed/policy.yaml new file mode 100644 index 0000000000..19525dff6b --- /dev/null +++ b/test/cli/test/mixed/policy.yaml @@ -0,0 +1,39 @@ +apiVersion: kyverno.io/v1 +kind: ClusterPolicy +metadata: + name: ondemand + annotations: + policies.kyverno.io/description: >- + This Policy contains two different types of rules that is validate + as well as mutate. The validate rule validate against the mutation or patches added by the mutate rule + whereas mutate rule adds label for nodeSelector "osc.edu/role: ondemand". +spec: + rules: + - name: ondemand-managed_by + match: + any: + - resources: + kinds: + - Pod + namespaces: + - "user-?*" + validate: + message: "{{ request.object.metadata.namespace }} pods must be managed by open-ondemand" + pattern: + metadata: + labels: + app.kubernetes.io/managed-by: "open-ondemand" + - name: ondemand-nodeselector + match: + any: + - resources: + kinds: + - Pod + selector: + matchLabels: + app.kubernetes.io/managed-by: open-ondemand + mutate: + patchStrategicMerge: + spec: + nodeSelector: + osc.edu/role: ondemand \ No newline at end of file diff --git a/test/cli/test/mixed/resource.yaml b/test/cli/test/mixed/resource.yaml new file mode 100644 index 0000000000..325a551052 --- /dev/null +++ b/test/cli/test/mixed/resource.yaml @@ -0,0 +1,24 @@ +apiVersion: v1 +kind: Pod +metadata: + name: nodeselector-with-labels-on-mutation + labels: + app.kubernetes.io/managed-by: open-ondemand + namespace: user-space +spec: + containers: + - name: nginx + image: nginx:latest + +--- +apiVersion: v1 +kind: Pod +metadata: + name: nodeselector-without-labels-on-mutation + labels: + app.kubernetes.io/managed-by: "open-xyz" + namespace: user-foo +spec: + containers: + - name: nginx + image: nginx:latest \ No newline at end of file