--- apiVersion: v1 kind: Namespace metadata: name: renovate --- apiVersion: batch/v1 kind: CronJob metadata: name: renovate namespace: renovate spec: schedule: "@hourly" concurrencyPolicy: Forbid jobTemplate: spec: template: spec: containers: - name: renovate # Update this to the latest available and then enable Renovate on # the manifest image: renovate/renovate:39.233.0-full envFrom: - secretRef: name: renovate-env restartPolicy: Never