feat: add renovate-bot
This commit is contained in:
parent
a7e964485b
commit
80dac2acbd
4 changed files with 153 additions and 0 deletions
45
manifests/renovate-bot.yml
Normal file
45
manifests/renovate-bot.yml
Normal file
|
@ -0,0 +1,45 @@
|
|||
---
|
||||
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"
|
||||
targetRevision: "36.*"
|
||||
helm:
|
||||
values: |
|
||||
fullnameOverride: "renovate-bot"
|
||||
cronjob:
|
||||
schedule: '@daily'
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue