mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 09:56:55 +00:00
18 lines
328 B
YAML
18 lines
328 B
YAML
|
apiVersion: batch/v1
|
||
|
kind: Job
|
||
|
metadata:
|
||
|
name: job
|
||
|
annotations:
|
||
|
cleanup.kyverno.io/propagation-policy: Background
|
||
|
spec:
|
||
|
template:
|
||
|
spec:
|
||
|
restartPolicy: Never
|
||
|
containers:
|
||
|
- name: main
|
||
|
image: docker.io/library/bash:5
|
||
|
command: ["bash"]
|
||
|
args:
|
||
|
- -c
|
||
|
- sleep 120s
|