4 Commits

Author SHA1 Message Date
b9d0ef311b update 2025-05-08 06:27:02 -05:00
0e6aad89dc update 2025-05-08 06:25:48 -05:00
7916ed8247 update 2025-05-08 06:25:00 -05:00
098186307b update 2025-05-08 06:24:33 -05:00
2 changed files with 45 additions and 18 deletions

View File

@@ -4,7 +4,6 @@ metadata:
name: vault
---
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
@@ -20,3 +19,23 @@ spec:
remoteRef:
key: kv/renovate
property: config
- secretKey: RENOVATE_AUTODISCOVER
remoteRef:
key: kv/renovate
property: RENOVATE_AUTODISCOVER
- secretKey: RENOVATE_ENDPOINT
remoteRef:
key: kv/renovate
property: RENOVATE_ENDPOINT
- secretKey: RENOVATE_GIT_AUTHOR
remoteRef:
key: kv/renovate
property: RENOVATE_GIT_AUTHOR
- secretKey: RENOVATE_PLATFORM
remoteRef:
key: kv/renovate
property: RENOVATE_PLATFORM
- secretKey: RENOVATE_TOKEN
remoteRef:
key: kv/renovate
property: RENOVATE_TOKEN

View File

@@ -62,9 +62,9 @@ renovate:
argsOverride: []
# -- Prepend shell commands before renovate runs
#preCommand: ''
preCommand: |
ls /config
cat /config/renovate.json
#preCommand: |
# ls /config
# cat /config/renovate.json
postCommand: ""
# postCommand: |
@@ -94,9 +94,17 @@ renovate:
renovate:
# -- Custom exiting global renovate config
existingConfigFile: "/config/renovate.json"
#existingConfigFile: "/config/renovate.json"
# -- Inline global renovate config.json
config: ""
config: |
{
"platform": "gitlab",
"endpoint": "https://gitlab.com/api/v4",
"autodiscover": "false",
"dryRun": false,
"printConfig": false,
"repositories": ["durfy/DurpCLI"]
}
# See https://docs.renovatebot.com/self-hosted-configuration
# config: |
# {
@@ -157,7 +165,7 @@ renovate:
# -- Environment variables that should be referenced from a k8s secret, cannot be used when existingSecret is set
secrets: {}
# -- k8s secret to reference environment variables from. Overrides secrets if set
existingSecret: ""
existingSecret: "renovate-config-secret"
# -- Additional configmaps. A generated configMap name is: "renovate.fullname" + "extra" + name(below) e.g. renovate-netrc-config
extraConfigmaps: []
@@ -174,18 +182,18 @@ renovate:
# "key"="value"
# "key1"="value1"
extraVolumes:
- name: renovate-config-secret
secretName:
name: renovate-config-secret
items:
- key: renovate.json
path: renovate.json
#extraVolumes:
# - name: renovate-config-secret
# secretName:
# name: renovate-config-secret
# items:
# - key: renovate.json
# path: renovate.json
extraVolumeMounts:
- name: renovate-config-secret
mountPath: /config
subPath: renovate.json
#extraVolumeMounts:
# - name: renovate-config-secret
# mountPath: /config
# subPath: renovate.json
# -- Additional containers to the pod
extraContainers: []