mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
22 lines
527 B
YAML
22 lines
527 B
YAML
apiVersion: batch/v1beta1
|
|
kind: CronJob
|
|
metadata:
|
|
name: policyreport-background-scan
|
|
namespace: kyverno
|
|
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
|