From 1b73d2880ba744b11dc850e16221ad9ad447b7c2 Mon Sep 17 00:00:00 2001 From: cherry2250 Date: Wed, 29 Oct 2025 11:20:27 +0900 Subject: [PATCH] =?UTF-8?q?Redis=20=EB=A7=88=EC=8A=A4=ED=84=B0=20=EB=85=B8?= =?UTF-8?q?=EB=93=9C=EB=A1=9C=20=EC=97=B0=EA=B2=B0=20=EC=84=A4=EC=A0=95=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - REDIS_HOST를 'redis'에서 'redis-node-0.redis-headless'로 변경 - Redis read-only replica 오류 해결 - Content Service 이미지 생성 정상 작동 확인 --- deployment/k8s/common/cm-common.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/k8s/common/cm-common.yaml b/deployment/k8s/common/cm-common.yaml index 9ff15e8..d9b98bf 100644 --- a/deployment/k8s/common/cm-common.yaml +++ b/deployment/k8s/common/cm-common.yaml @@ -6,7 +6,7 @@ metadata: data: # Redis Configuration REDIS_ENABLED: "true" - REDIS_HOST: "redis" + REDIS_HOST: "redis-node-0.redis-headless" REDIS_PORT: "6379" REDIS_TIMEOUT: "2000ms" REDIS_POOL_MAX: "8"