mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-13 03:16:55 +00:00
20 lines
No EOL
356 B
YAML
20 lines
No EOL
356 B
YAML
---
|
|
apiVersion: chainsaw.kyverno.io/v1alpha1
|
|
kind: TestStep
|
|
metadata:
|
|
creationTimestamp: null
|
|
name: deployment
|
|
spec:
|
|
timeouts: {}
|
|
try:
|
|
- apply:
|
|
file: good-deployment.yaml
|
|
- apply:
|
|
expect:
|
|
- check:
|
|
($error != null): true
|
|
file: bad-deployment.yaml
|
|
finally:
|
|
- script:
|
|
content: sleep 5
|
|
timeout: 10s |