From 38afa2a654c580bf4c718efa2a8906adf79951b4 Mon Sep 17 00:00:00 2001 From: Axel Lender Date: Thu, 14 Aug 2025 14:11:25 +0200 Subject: [PATCH] feat(helmfile): Test external secrets Signed-off-by: Axel Lender --- .../default/external_secrets.yaml.gotmpl | 52 +++++++++---------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/helmfile/environments/default/external_secrets.yaml.gotmpl b/helmfile/environments/default/external_secrets.yaml.gotmpl index 327baa2e..0ecb3420 100644 --- a/helmfile/environments/default/external_secrets.yaml.gotmpl +++ b/helmfile/environments/default/external_secrets.yaml.gotmpl @@ -5,51 +5,51 @@ externalSecrets: ai: apiKey: - name: ~ - key: ~ + name: "a" + key: "aiapikey" databases: notes: password: - name: ~ - key: ~ + name: "a" + key: "notesDatabasePassword" user: - name: ~ - key: ~ + name: "a" + key: "notesDatabaseUser" keycloak: clientSecret: notes: - name: ~ - key: ~ + name: "a" + key: "keycloaknotes" notes: collaborationSecret: - name: ~ - key: ~ + name: "a" + key: "notesCollaborationSecret" django: secretKey: - name: ~ - key: ~ + name: "a" + key: "notesDjangoSecretKey" superuserEmail: - name: ~ - key: ~ + name: "a" + key: "notessuperuserEmail" superuserPassword: - name: ~ - key: ~ + name: "a" + key: "notessuperuserPassword" redisUrl: - name: ~ - key: ~ + name: "a" + key: "notesredisurl" objectstores: notes: s3AccessKeyId: - name: ~ - key: ~ + name: "a" + key: "objectstoresNotesS3AccessKeyId" s3SecretAccessKey: - name: ~ - key: ~ + name: "a" + key: "objectstoresNotesS3SecretAccessKey" postfix: opendeskSystemPassword: - name: ~ - key: ~ + name: "a" + key: "postfixopendeskSystemPassword" opendeskSystemUsername: - name: ~ - key: ~ + name: "a" + key: "postfixopendeskSystemUsername" ...