Files
infra/deploy/renovate/cronjob.yaml
2025-03-22 23:26:40 +01:00

24 lines
541 B
YAML

apiVersion: batch/v1
kind: CronJob
metadata:
name: renovate
namespace: renovate
spec:
schedule: '@hourly'
concurrencyPolicy: Forbid
jobTemplate:
spec:
template:
spec:
containers:
- name: renovate
# Update the image if needed
image: renovate/renovate:39.211
env:
- name: LOG_LEVEL
value: debug
envFrom:
- secretRef:
name: renovate-env
restartPolicy: Never