mirror of
https://github.com/cna-bootcamp/phonebill.git
synced 2025-12-06 16:16:23 +00:00
- Kustomize 기반 환경별(dev/staging/prod) 매니페스트 관리 - Jenkins 파이프라인 스크립트 작성 (Podman, Gradle, kubectl 컨테이너) - SonarQube 코드 품질 분석 및 Quality Gate 연동 - 수동 배포 및 리소스 검증 스크립트 추가 - k8s 매니페스트 구조 재정리 (configmaps, secrets, deployments, services 분리) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
metadata:
|
|
name: phonebill-base
|
|
|
|
resources:
|
|
# Common resources
|
|
- common/cm-common.yaml
|
|
- common/secret-common.yaml
|
|
- common/ingress.yaml
|
|
|
|
# api-gateway
|
|
- api-gateway/deployment.yaml
|
|
- api-gateway/service.yaml
|
|
- api-gateway/cm-api-gateway.yaml
|
|
|
|
# user-service
|
|
- user-service/deployment.yaml
|
|
- user-service/service.yaml
|
|
- user-service/cm-user-service.yaml
|
|
- user-service/secret-user-service.yaml
|
|
|
|
# bill-service
|
|
- bill-service/deployment.yaml
|
|
- bill-service/service.yaml
|
|
- bill-service/cm-bill-service.yaml
|
|
- bill-service/secret-bill-service.yaml
|
|
|
|
# product-service
|
|
- product-service/deployment.yaml
|
|
- product-service/service.yaml
|
|
- product-service/cm-product-service.yaml
|
|
- product-service/secret-product-service.yaml
|
|
|
|
# kos-mock
|
|
- kos-mock/deployment.yaml
|
|
- kos-mock/service.yaml
|
|
- kos-mock/cm-kos-mock.yaml
|
|
|
|
commonLabels:
|
|
app: phonebill
|
|
version: v1
|
|
|
|
images:
|
|
- name: docker.io/hiondal/api-gateway
|
|
newTag: latest
|
|
- name: docker.io/hiondal/user-service
|
|
newTag: latest
|
|
- name: docker.io/hiondal/bill-service
|
|
newTag: latest
|
|
- name: docker.io/hiondal/product-service
|
|
newTag: latest
|
|
- name: docker.io/hiondal/kos-mock
|
|
newTag: latest
|