mirror of
https://github.com/cna-bootcamp/phonebill.git
synced 2025-12-05 23:56:23 +00:00
- ArgoCD 워크플로우 파일 삭제 (backend-cicd_ArgoCD.yaml) - Kustomize base/overlays 설정 업데이트 - GitHub Actions 백엔드 CI/CD 파이프라인 개선 - 각 서비스 deployment 및 secret 설정 수정 - Docker 이미지 풀 시크릿을 플레이스홀더로 변경 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
77 lines
1.7 KiB
YAML
77 lines
1.7 KiB
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: phonebill
|
|
|
|
resources:
|
|
- ../../base
|
|
|
|
patches:
|
|
# Common patches
|
|
- path: cm-common-patch.yaml
|
|
target:
|
|
kind: ConfigMap
|
|
name: cm-common
|
|
- path: secret-common-patch.yaml
|
|
target:
|
|
kind: Secret
|
|
name: secret-common
|
|
- path: ingress-patch.yaml
|
|
target:
|
|
kind: Ingress
|
|
name: phonebill
|
|
|
|
# API Gateway patches
|
|
- path: deployment-api-gateway-patch.yaml
|
|
target:
|
|
kind: Deployment
|
|
name: api-gateway
|
|
|
|
# User Service patches
|
|
- path: deployment-user-service-patch.yaml
|
|
target:
|
|
kind: Deployment
|
|
name: user-service
|
|
- path: secret-user-service-patch.yaml
|
|
target:
|
|
kind: Secret
|
|
name: secret-user-service
|
|
|
|
# Bill Service patches
|
|
- path: deployment-bill-service-patch.yaml
|
|
target:
|
|
kind: Deployment
|
|
name: bill-service
|
|
- path: secret-bill-service-patch.yaml
|
|
target:
|
|
kind: Secret
|
|
name: secret-bill-service
|
|
|
|
# Product Service patches
|
|
- path: deployment-product-service-patch.yaml
|
|
target:
|
|
kind: Deployment
|
|
name: product-service
|
|
- path: secret-product-service-patch.yaml
|
|
target:
|
|
kind: Secret
|
|
name: secret-product-service
|
|
|
|
# KOS Mock patches
|
|
- path: deployment-kos-mock-patch.yaml
|
|
target:
|
|
kind: Deployment
|
|
name: kos-mock
|
|
|
|
images:
|
|
- name: docker.io/hiondal/api-gateway
|
|
newTag: dev-latest
|
|
- name: docker.io/hiondal/user-service
|
|
newTag: dev-latest
|
|
- name: docker.io/hiondal/bill-service
|
|
newTag: dev-latest
|
|
- name: docker.io/hiondal/product-service
|
|
newTag: dev-latest
|
|
- name: docker.io/hiondal/kos-mock
|
|
newTag: dev-latest
|