Move renovate config to file, use renovate-full image
This commit is contained in:
parent
b3b63977af
commit
2952eb74b4
4 changed files with 36 additions and 26 deletions
|
@ -10,6 +10,9 @@ resources:
|
||||||
- secrets.yaml
|
- secrets.yaml
|
||||||
- renovatebot.yaml
|
- renovatebot.yaml
|
||||||
configMapGenerator:
|
configMapGenerator:
|
||||||
- name: forgejo-templates-base
|
- name: forgejo-templates-base
|
||||||
files:
|
files:
|
||||||
- forgejo-templates-base/head_navbar.tmpl
|
- forgejo-templates-base/head_navbar.tmpl
|
||||||
|
- name: renovate-config
|
||||||
|
files:
|
||||||
|
- renovate/config.js
|
||||||
|
|
10
k8s/forgejo/renovate/config.js
Normal file
10
k8s/forgejo/renovate/config.js
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
module.exports = {
|
||||||
|
autodiscover: true,
|
||||||
|
endpoint: 'https://git.janky.solutions',
|
||||||
|
gitAuthor: 'Renovate Bot <renovatebot@janky.solutions>',
|
||||||
|
platform: 'gitea',
|
||||||
|
allowScripts: true,
|
||||||
|
allowedPostUpgradeCommands: [
|
||||||
|
".*"
|
||||||
|
]
|
||||||
|
};
|
|
@ -11,21 +11,18 @@ spec:
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: renovate
|
- name: renovate
|
||||||
image: renovate/renovate:38
|
image: renovate/renovate:38.121-full
|
||||||
|
env:
|
||||||
|
- name: RENOVATE_CONFIG_FILE
|
||||||
|
value: /etc/renovate/config.js
|
||||||
envFrom:
|
envFrom:
|
||||||
- secretRef:
|
- secretRef:
|
||||||
name: renovate
|
name: renovate
|
||||||
- configMapRef:
|
volumeMounts:
|
||||||
name: renovate
|
- name: renovate-config
|
||||||
|
mountPath: /etc/renovate
|
||||||
restartPolicy: Never
|
restartPolicy: Never
|
||||||
---
|
volumes:
|
||||||
apiVersion: v1
|
- name: renovate-config
|
||||||
kind: ConfigMap
|
configMap:
|
||||||
metadata:
|
name: renovate-config
|
||||||
name: renovate
|
|
||||||
data:
|
|
||||||
RENOVATE_AUTODISCOVER: 'true'
|
|
||||||
RENOVATE_ENDPOINT: 'https://git.janky.solutions'
|
|
||||||
RENOVATE_GIT_AUTHOR: 'Renovate Bot <renovatebot@janky.solutions>'
|
|
||||||
RENOVATE_PLATFORM: gitea
|
|
||||||
RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: docker run --rm -v $(pwd):/infra -w /infra git.devhack.net/devhack/containers/deployer:latest -- ./helm/render-all.sh
|
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
},
|
},
|
||||||
"postUpgradeTasks": {
|
"postUpgradeTasks": {
|
||||||
"commands": [
|
"commands": [
|
||||||
"docker run --rm -v $(pwd):/infra -w /infra git.devhack.net/devhack/containers/deployer:latest -- ./helm/render-all.sh"
|
"./helm/render-all.sh"
|
||||||
],
|
],
|
||||||
"fileFilters": [
|
"fileMatch": [
|
||||||
"helm/**"
|
"helm/**"
|
||||||
],
|
],
|
||||||
"executionMode": "update"
|
"executionMode": "update"
|
||||||
|
|
Loading…
Reference in a new issue