From 262ce1ad72fc28d747dda9b6eeb61068ba3e33ee Mon Sep 17 00:00:00 2001 From: Janis Date: Thu, 30 Apr 2026 11:03:41 +0200 Subject: [PATCH] feat(nowchess): set REDIS_PREFIX per environment staging: nowchess-staging, production: nowchess Co-Authored-By: Claude Sonnet 4.6 --- nowchess/base/nowchess-env-config.yaml | 1 + nowchess/eu-central-1-prod/kustomization.yaml | 1 + nowchess/eu-central-1-staging/kustomization.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/nowchess/base/nowchess-env-config.yaml b/nowchess/base/nowchess-env-config.yaml index bf6f1e9..c15bcff 100644 --- a/nowchess/base/nowchess-env-config.yaml +++ b/nowchess/base/nowchess-env-config.yaml @@ -6,3 +6,4 @@ data: QUARKUS_PROFILE: staging,deployed CORS_ORIGINS: "" NOWCHESS_COORDINATOR_ENABLED: "true" + REDIS_PREFIX: nowchess-staging diff --git a/nowchess/eu-central-1-prod/kustomization.yaml b/nowchess/eu-central-1-prod/kustomization.yaml index 88c1d75..dbe4303 100644 --- a/nowchess/eu-central-1-prod/kustomization.yaml +++ b/nowchess/eu-central-1-prod/kustomization.yaml @@ -14,6 +14,7 @@ patches: QUARKUS_PROFILE: production,deployed CORS_ORIGINS: https://nowchess.janis-eccarius.de NOWCHESS_COORDINATOR_ENABLED: "true" + REDIS_PREFIX: nowchess target: kind: ConfigMap name: nowchess-env-config diff --git a/nowchess/eu-central-1-staging/kustomization.yaml b/nowchess/eu-central-1-staging/kustomization.yaml index d231d77..740e07c 100644 --- a/nowchess/eu-central-1-staging/kustomization.yaml +++ b/nowchess/eu-central-1-staging/kustomization.yaml @@ -14,6 +14,7 @@ patches: QUARKUS_PROFILE: staging,deployed CORS_ORIGINS: https://st.nowchess.janis-eccarius.de NOWCHESS_COORDINATOR_ENABLED: "true" + REDIS_PREFIX: nowchess-staging target: kind: ConfigMap name: nowchess-env-config