apiVersion: batch/v1 kind: CronJob metadata: name: myorg-waiting-followup namespace: myorg-assistant labels: app: myorg-assistant job: waiting-followup spec: # Run every Monday at 9:00 AM schedule: "0 9 * * 1" timeZone: "Europe/Madrid" successfulJobsHistoryLimit: 2 failedJobsHistoryLimit: 2 concurrencyPolicy: Forbid jobTemplate: spec: template: metadata: labels: app: myorg-assistant job: waiting-followup spec: restartPolicy: OnFailure imagePullSecrets: - name: gitea-registry containers: - name: waiting-followup image: git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf imagePullPolicy: Always