Files
klaster/apps/renovate/cronjob.yaml

25 lines
615 B
YAML

---
apiVersion: batch/v1
kind: CronJob
metadata:
name: renovate
namespace: renovate
spec:
schedule: "@daily"
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:41.157.1-full
envFrom:
- secretRef:
name: renovate-gitea-token
- configMapRef:
name: renovate-config
restartPolicy: Never