1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 01:46:55 +00:00
kyverno/test/conformance/chainsaw/policy-validation/cluster-policy/cel-expressions/chainsaw-test.yaml

23 lines
762 B
YAML
Raw Normal View History

apiVersion: chainsaw.kyverno.io/v1alpha1
kind: Test
metadata:
name: cel-expressions
spec:
steps:
- name: Apply the first policy
try:
- script:
content: kubectl apply -f policy-1.yaml
check:
# This check ensures that the string "undefined field 'automountServiceAccountToken';" is found
# in stderr or else fails
(contains($stderr, 'undefined field \'automountServiceAccountToken\';')): true
- name: Apply the second policy
try:
- script:
content: kubectl apply -f policy-2.yaml
check:
# This check ensures that the string "undefined field 'replicas';" is found
# in stderr or else fails
(contains($stderr, 'undefined field \'replicas\';')): true