2023-07-29 13:38:29 +00:00
|
|
|
---
|
|
|
|
apiVersion: argoproj.io/v1alpha1
|
|
|
|
kind: Application
|
|
|
|
metadata:
|
|
|
|
name: renovate-bot
|
|
|
|
namespace: argocd
|
|
|
|
spec:
|
|
|
|
project: default
|
|
|
|
source:
|
|
|
|
repoURL: "https://docs.renovatebot.com/helm-charts"
|
|
|
|
chart: "renovate"
|
2024-11-05 02:01:40 +00:00
|
|
|
targetRevision: "39.*"
|
2023-07-29 13:38:29 +00:00
|
|
|
helm:
|
|
|
|
values: |
|
|
|
|
fullnameOverride: "renovate-bot"
|
|
|
|
cronjob:
|
2024-08-02 12:35:05 +00:00
|
|
|
schedule: '*/15 2 * * *'
|
2023-07-29 13:38:29 +00:00
|
|
|
concurrencyPolicy: "Forbid"
|
|
|
|
existingSecret: "renovate-env"
|
|
|
|
renovate:
|
|
|
|
persistence:
|
|
|
|
cache:
|
|
|
|
enabled: true
|
|
|
|
storageSize: "128Mi"
|
|
|
|
config: |
|
|
|
|
{
|
|
|
|
"onboardingConfigFileName": ".renovaterc.json",
|
|
|
|
"onboardingConfig": {"extends":["local>infrastructure/renovate-config"]},
|
|
|
|
"autodiscover": true
|
|
|
|
}
|
|
|
|
destination:
|
|
|
|
server: 'https://kubernetes.default.svc'
|
|
|
|
namespace: renovate
|
|
|
|
syncPolicy:
|
|
|
|
automated:
|
|
|
|
prune: true
|
|
|
|
selfHeal: true
|
|
|
|
syncOptions:
|
|
|
|
- CreateNamespace=true
|
|
|
|
retry:
|
|
|
|
limit: 5
|
|
|
|
backoff:
|
|
|
|
duration: 5s
|
|
|
|
factor: 2
|
|
|
|
maxDuration: 5m
|