From 0a97dc48351aa8a4409d80bd8f0e5442fee2c6f5 Mon Sep 17 00:00:00 2001 From: hiondal Date: Sat, 13 Sep 2025 02:00:53 +0900 Subject: [PATCH] =?UTF-8?q?Kustomize=20=EB=A0=88=EC=9D=B4=EB=B8=94=20?= =?UTF-8?q?=EA=B5=AC=EC=A1=B0=20=EC=B5=9C=EC=A0=81=ED=99=94=20=EC=99=84?= =?UTF-8?q?=EB=A3=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Base에 system: phonebill 공통 레이블 추가 - 환경별 overlay에서 중복 labels 설정 제거 - 파일 끝 줄바꿈 정리로 일관성 확보 - 모든 환경 Kustomize 빌드 검증 완료 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- deployment/cicd/kustomize/base/kustomization.yaml | 3 +++ deployment/cicd/kustomize/overlays/prod/kustomization.yaml | 5 ----- .../cicd/kustomize/overlays/staging/kustomization.yaml | 5 ----- 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/deployment/cicd/kustomize/base/kustomization.yaml b/deployment/cicd/kustomize/base/kustomization.yaml index e6ec7ef..14099a4 100644 --- a/deployment/cicd/kustomize/base/kustomization.yaml +++ b/deployment/cicd/kustomize/base/kustomization.yaml @@ -42,6 +42,9 @@ resources: - kos-mock/service.yaml - kos-mock/cm-kos-mock.yaml +commonLabels: + system: phonebill + images: - name: acrdigitalgarage01.azurecr.io/phonebill/api-gateway newTag: latest diff --git a/deployment/cicd/kustomize/overlays/prod/kustomization.yaml b/deployment/cicd/kustomize/overlays/prod/kustomization.yaml index 6116c27..238bd73 100644 --- a/deployment/cicd/kustomize/overlays/prod/kustomization.yaml +++ b/deployment/cicd/kustomize/overlays/prod/kustomization.yaml @@ -63,8 +63,3 @@ images: newTag: prod-latest - name: acrdigitalgarage01.azurecr.io/phonebill/kos-mock newTag: prod-latest - -labels: - - includeSelectors: true - pairs: - environment: prod \ No newline at end of file diff --git a/deployment/cicd/kustomize/overlays/staging/kustomization.yaml b/deployment/cicd/kustomize/overlays/staging/kustomization.yaml index 0c3a8a2..cef79a5 100644 --- a/deployment/cicd/kustomize/overlays/staging/kustomization.yaml +++ b/deployment/cicd/kustomize/overlays/staging/kustomization.yaml @@ -63,8 +63,3 @@ images: newTag: staging-latest - name: acrdigitalgarage01.azurecr.io/phonebill/kos-mock newTag: staging-latest - -labels: - - includeSelectors: true - pairs: - environment: staging \ No newline at end of file