24 lines
541 B
YAML
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
|