Revert "feat: add renovate-bot cronjob"

move renovate to k8s/cluster-deployments

This reverts commit 1edbc436db.
This commit is contained in:
Sebastian Mark 2023-07-29 12:01:20 +02:00
parent 85fb45b690
commit d986d09036
4 changed files with 0 additions and 135 deletions

View file

@ -1,27 +0,0 @@
local app = import "../_templates/argocd_app.libsonnet";
[
app + {
chart:: "renovate",
repo:: "https://docs.renovatebot.com/helm-charts",
version:: "36.*",
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
}
|||
}
]