Compare commits
4 Commits
4a6bac7674
...
b9d0ef311b
| Author | SHA1 | Date | |
|---|---|---|---|
| b9d0ef311b | |||
| 0e6aad89dc | |||
| 7916ed8247 | |||
| 098186307b |
@@ -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
|
||||
|
||||
@@ -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: []
|
||||
|
||||
Reference in New Issue
Block a user