add renovate

This commit is contained in:
2025-03-22 23:23:31 +01:00
parent 04df9f7d56
commit c35754b4ef
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
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
args:
- user/repo
env:
- name: LOG_LEVEL
value: debug
envFrom:
- secretRef:
name: renovate-env
restartPolicy: Never