From f3d2def98a88fc58e210009ec513aa0f9abfa2b3 Mon Sep 17 00:00:00 2001 From: Daniel Sy Date: Wed, 13 Aug 2025 14:42:35 +0200 Subject: [PATCH] =?UTF-8?q?fix(config):=20=F0=9F=94=A7=20Update=20Forgejo?= =?UTF-8?q?=20client=20credentials=20format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refactor the configuration to use environment variable syntax for Forgejo client ID and secret. This change improves consistency and readability in the configuration file. --- otc/observability.t09.de/stacks/core/dex/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/otc/observability.t09.de/stacks/core/dex/values.yaml b/otc/observability.t09.de/stacks/core/dex/values.yaml index d552b8a..251e546 100644 --- a/otc/observability.t09.de/stacks/core/dex/values.yaml +++ b/otc/observability.t09.de/stacks/core/dex/values.yaml @@ -52,8 +52,8 @@ config: id: gitea name: Forgejo config: - clientID: "{{`{{ .Env.FORGEJO_CLIENT_ID }}`}}" - clientSecret: "{{`{{ .Env.FORGEJO_CLIENT_SECRET }}`}}" + clientID: "$FORGEJO_CLIENT_ID" + clientSecret: "$FORGEJO_CLIENT_SECRET" redirectURI: https://dex.observability.t09.de/callback baseURL: https://edp.buildth.ing enablePasswordDB: false