Files
k8s-manifests/renovate/cronjob-renovate.yaml
chemavx f63051c0f5 chore: migrate renovate config from config.js to renovate.json
Eliminates JS migration warning; update RENOVATE_CONFIG_FILE accordingly.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-20 14:01:32 +00:00

46 lines
1.2 KiB
YAML

apiVersion: batch/v1
kind: CronJob
metadata:
name: renovate
namespace: renovate
spec:
schedule: "0 */6 * * *"
concurrencyPolicy: Forbid
successfulJobsHistoryLimit: 3
failedJobsHistoryLimit: 3
jobTemplate:
spec:
backoffLimit: 0
template:
spec:
restartPolicy: Never
containers:
- name: renovate
image: ghcr.io/renovatebot/renovate:38.0.0
imagePullPolicy: Always
env:
- name: RENOVATE_TOKEN
valueFrom:
secretKeyRef:
name: renovate-token
key: RENOVATE_TOKEN
- name: RENOVATE_CONFIG_FILE
value: /opt/renovate/renovate.json
- name: LOG_LEVEL
value: info
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: "1"
memory: 1Gi
volumeMounts:
- name: config
mountPath: /opt/renovate
readOnly: true
volumes:
- name: config
configMap:
name: renovate-config