mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 09:56:55 +00:00
* feat: support CEL expression warnings Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> * fix Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> * fix: allow the policy creation but return warnings to the API server Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> * fix tests Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> --------- Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> Signed-off-by: ShutingZhao <shuting@nirmata.com> Co-authored-by: ShutingZhao <shuting@nirmata.com>
23 lines
788 B
YAML
Executable file
23 lines
788 B
YAML
Executable file
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
|