This commit is contained in:
2025-05-01 05:53:47 -05:00
parent 91c26911ce
commit 37ab76ac8e
2 changed files with 13 additions and 17 deletions

View File

@@ -8,15 +8,15 @@ metadata:
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: renovate-config
name: renovate-config-secret
spec:
secretStoreRef:
name: vault
kind: ClusterSecretStore
target:
name: renovate-config
name: renovate-config-secret
data:
- secretKey: renovate-config
- secretKey: renovate-config-secret
remoteRef:
key: kv/renovate
property: config

View File

@@ -95,13 +95,13 @@ renovate:
renovate:
# -- Custom exiting global renovate config
existingConfigFile: 'renovate-config'
existingConfigFile: '/renovate.json'
# -- Inline global renovate config.json
config: ''
# See https://docs.renovatebot.com/self-hosted-configuration
# config: |
# {
# "platform": "gitlab",
# "": "gitlab",
# "endpoint": "https://gitlab.example.com/api/v4",
# "token": "your-gitlab-renovate-user-token",
# "autodiscover": "false",
@@ -175,19 +175,15 @@ renovate:
# "key"="value"
# "key1"="value1"
# -- Additional volumes to the pod
extraVolumes: []
# extraVolumes:
# - name: netrc-config
# configMap:
# name: renovate-extra-netrc-config
extraVolumes:
- name: renovate-config
secretName:
name: renovate-config-secret
# -- Additional volumeMounts to the container
extraVolumeMounts: []
# extraVolumeMounts:
# - name: netrc-config
# mountPath: /home/ubuntu/.netrc
# subPath: .netrc
extraVolumeMounts:
- name: renovate-config
mountPath: /
subPath: renovate.config
# -- Additional containers to the pod
extraContainers: []