From 37ab76ac8e702da389ce41550b003ac29cf6d3ee Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Thu, 1 May 2025 05:53:47 -0500 Subject: [PATCH] update --- infra/renovate/templates/secrets.yaml | 6 +++--- infra/renovate/values.yaml | 24 ++++++++++-------------- 2 files changed, 13 insertions(+), 17 deletions(-) diff --git a/infra/renovate/templates/secrets.yaml b/infra/renovate/templates/secrets.yaml index 03c99f6..382e370 100644 --- a/infra/renovate/templates/secrets.yaml +++ b/infra/renovate/templates/secrets.yaml @@ -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 diff --git a/infra/renovate/values.yaml b/infra/renovate/values.yaml index 969c10d..a805a47 100644 --- a/infra/renovate/values.yaml +++ b/infra/renovate/values.yaml @@ -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: []