mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-08 17:06:57 +00:00
22 lines
506 B
YAML
22 lines
506 B
YAML
|
apiVersion: batch/v1beta1
|
||
|
kind: CronJob
|
||
|
metadata:
|
||
|
name: policyreport-background-scan
|
||
|
spec:
|
||
|
schedule: "*/6 * * * *"
|
||
|
concurrencyPolicy : Forbid
|
||
|
suspend : true
|
||
|
successfulJobsHistoryLimit : 4
|
||
|
failedJobsHistoryLimit : 4
|
||
|
jobTemplate:
|
||
|
spec:
|
||
|
template:
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: policyreport-background-scan
|
||
|
image: evalsocket/kyverno-cli:latest
|
||
|
args:
|
||
|
- report
|
||
|
- all
|
||
|
restartPolicy: OnFailure
|