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 apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret kind: ExternalSecret
metadata: metadata:
name: renovate-config name: renovate-config-secret
spec: spec:
secretStoreRef: secretStoreRef:
name: vault name: vault
kind: ClusterSecretStore kind: ClusterSecretStore
target: target:
name: renovate-config name: renovate-config-secret
data: data:
- secretKey: renovate-config - secretKey: renovate-config-secret
remoteRef: remoteRef:
key: kv/renovate key: kv/renovate
property: config property: config

View File

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