mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 18:06:55 +00:00
24 lines
788 B
YAML
24 lines
788 B
YAML
|
apiVersion: chainsaw.kyverno.io/v1alpha1
|
||
|
kind: Test
|
||
|
metadata:
|
||
|
creationTimestamp: null
|
||
|
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
|