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 name: vault
--- ---
apiVersion: external-secrets.io/v1beta1 apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret kind: ExternalSecret
metadata: metadata:
@@ -20,3 +19,23 @@ spec:
remoteRef: remoteRef:
key: kv/renovate key: kv/renovate
property: config 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: [] argsOverride: []
# -- Prepend shell commands before renovate runs # -- Prepend shell commands before renovate runs
#preCommand: '' #preCommand: ''
preCommand: | #preCommand: |
ls /config # ls /config
cat /config/renovate.json # cat /config/renovate.json
postCommand: "" postCommand: ""
# postCommand: | # postCommand: |
@@ -94,9 +94,17 @@ renovate:
renovate: renovate:
# -- Custom exiting global renovate config # -- Custom exiting global renovate config
existingConfigFile: "/config/renovate.json" #existingConfigFile: "/config/renovate.json"
# -- Inline global renovate config.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 # See https://docs.renovatebot.com/self-hosted-configuration
# config: | # config: |
# { # {
@@ -157,7 +165,7 @@ renovate:
# -- Environment variables that should be referenced from a k8s secret, cannot be used when existingSecret is set # -- Environment variables that should be referenced from a k8s secret, cannot be used when existingSecret is set
secrets: {} secrets: {}
# -- k8s secret to reference environment variables from. Overrides secrets if set # -- 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 # -- Additional configmaps. A generated configMap name is: "renovate.fullname" + "extra" + name(below) e.g. renovate-netrc-config
extraConfigmaps: [] extraConfigmaps: []
@@ -174,18 +182,18 @@ renovate:
# "key"="value" # "key"="value"
# "key1"="value1" # "key1"="value1"
extraVolumes: #extraVolumes:
- name: renovate-config-secret # - name: renovate-config-secret
secretName: # secretName:
name: renovate-config-secret # name: renovate-config-secret
items: # items:
- key: renovate.json # - key: renovate.json
path: renovate.json # path: renovate.json
extraVolumeMounts: #extraVolumeMounts:
- name: renovate-config-secret # - name: renovate-config-secret
mountPath: /config # mountPath: /config
subPath: renovate.json # subPath: renovate.json
# -- Additional containers to the pod # -- Additional containers to the pod
extraContainers: [] extraContainers: []