From 3afee053d0a669ae56bf45855fe2182a9ba715bf Mon Sep 17 00:00:00 2001 From: hiondal Date: Thu, 30 Oct 2025 09:35:17 +0900 Subject: [PATCH] =?UTF-8?q?Kustomize=20commonLabels=20=EC=A0=9C=EA=B1=B0?= =?UTF-8?q?=20=EB=B0=8F=20API=20=ED=86=A0=ED=81=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Deployment selector 불변성 에러 해결을 위해 commonLabels 제거 - base/kustomization.yaml: app.kubernetes.io/managed-by, app.kubernetes.io/part-of 레이블 제거 - overlays/dev/kustomization.yaml: environment 레이블 제거 - content-service: Replicate API 토큰 추가 --- .../base/content-service-secret-content-service.yaml | 2 +- .github/kustomize/base/kustomization.yaml | 5 ----- .github/kustomize/overlays/dev/kustomization.yaml | 4 ---- 3 files changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/kustomize/base/content-service-secret-content-service.yaml b/.github/kustomize/base/content-service-secret-content-service.yaml index ea3e2c4..47ddc32 100644 --- a/.github/kustomize/base/content-service-secret-content-service.yaml +++ b/.github/kustomize/base/content-service-secret-content-service.yaml @@ -8,7 +8,7 @@ stringData: AZURE_STORAGE_CONNECTION_STRING: "DefaultEndpointsProtocol=https;AccountName=blobkteventstorage;AccountKey=tcBN7mAfojbl0uGsOpU7RNuKNhHnzmwDiWjN31liSMVSrWaEK+HHnYKZrjBXXAC6ZPsuxUDlsf8x+AStd++QYg==;EndpointSuffix=core.windows.net" # Replicate API Token - REPLICATE_API_TOKEN: "" + REPLICATE_API_TOKEN: "r8_BsGCJtAg5U5kkMBXSe3pgMkPufSKnUR4NY9gJ" # HuggingFace API Token HUGGINGFACE_API_TOKEN: "" diff --git a/.github/kustomize/base/kustomization.yaml b/.github/kustomize/base/kustomization.yaml index 0470db7..a57fa23 100644 --- a/.github/kustomize/base/kustomization.yaml +++ b/.github/kustomize/base/kustomization.yaml @@ -53,11 +53,6 @@ resources: - analytics-service-cm-analytics-service.yaml - analytics-service-secret-analytics-service.yaml -# Common labels for all resources -commonLabels: - app.kubernetes.io/managed-by: kustomize - app.kubernetes.io/part-of: kt-event-marketing - # Image tag replacement (will be overridden by overlays) images: - name: acrdigitalgarage01.azurecr.io/kt-event-marketing/user-service diff --git a/.github/kustomize/overlays/dev/kustomization.yaml b/.github/kustomize/overlays/dev/kustomization.yaml index 2c6ec34..a3a1579 100644 --- a/.github/kustomize/overlays/dev/kustomization.yaml +++ b/.github/kustomize/overlays/dev/kustomization.yaml @@ -6,10 +6,6 @@ namespace: kt-event-marketing bases: - ../../base -# Environment-specific labels -commonLabels: - environment: dev - # Environment-specific patches patchesStrategicMerge: - user-service-patch.yaml