mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 09:56:55 +00:00
23 lines
471 B
YAML
23 lines
471 B
YAML
|
apiVersion: chainsaw.kyverno.io/v1alpha1
|
||
|
kind: Test
|
||
|
metadata:
|
||
|
name: background
|
||
|
spec:
|
||
|
steps:
|
||
|
- name: Create job with background deletion policy
|
||
|
try:
|
||
|
- create:
|
||
|
file: job.yaml
|
||
|
- name: Wait pod is running
|
||
|
try:
|
||
|
- assert:
|
||
|
file: pod-assert.yaml
|
||
|
- name: Delete job with background deletion policy
|
||
|
try:
|
||
|
- delete:
|
||
|
file: job.yaml
|
||
|
- name: Assert pod is no longer running
|
||
|
try:
|
||
|
- error:
|
||
|
file: pod-assert.yaml
|