apiVersion: batch/v1 kind: CronJob metadata: name: kitestacks-widget-check namespace: monitoring spec: schedule: "0 * * * *" # every hour concurrencyPolicy: Forbid jobTemplate: spec: template: spec: containers: - name: kitestacks-check image: yourdockerhubuser/kitestacks-check:latest imagePullPolicy: Always restartPolicy: OnFailure