Jenkins 기반 CI/CD 파이프라인 구성

- 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>
This commit is contained in:
ondal
2025-12-01 10:23:32 +09:00
parent 21b9c77109
commit f12fed5de9
113 changed files with 2955 additions and 3567 deletions
@@ -7,7 +7,7 @@ global:
database: "phonebill_auth"
username: "auth_user"
password: "AuthUser2025@"
storageClass: "managed"
storageClass: "standard"
# Primary 설정 (개발환경 단독 구성)
architecture: standalone
@@ -25,7 +25,7 @@ primary:
# 스토리지 설정
persistence:
enabled: true
storageClass: "managed"
storageClass: "standard"
size: 20Gi
# PostgreSQL 성능 설정 (개발환경 최적화)
@@ -7,7 +7,7 @@ global:
database: "bill_inquiry_db"
username: "bill_inquiry_user"
password: "BillUser2025@"
storageClass: "managed"
storageClass: "standard"
# Primary 설정 (개발환경 단독 구성)
architecture: standalone
@@ -25,7 +25,7 @@ primary:
# 스토리지 설정
persistence:
enabled: true
storageClass: "managed"
storageClass: "standard"
size: 20Gi
# PostgreSQL 성능 설정 (개발환경 최적화)
@@ -7,7 +7,7 @@ global:
database: "product_change_db"
username: "product_change_user"
password: "ProductUser2025@"
storageClass: "managed"
storageClass: "standard"
# Primary 설정 (개발환경 단독 구성)
architecture: standalone
@@ -25,7 +25,7 @@ primary:
# 스토리지 설정
persistence:
enabled: true
storageClass: "managed"
storageClass: "standard"
size: 20Gi
# PostgreSQL 성능 설정 (개발환경 최적화)
@@ -1,7 +1,7 @@
# values.yaml - Redis Cache 개발환경 설정
# Redis 기본 설정
global:
storageClass: "managed"
storageClass: "standard"
# 아키텍처 (개발환경 단일 구성)
architecture: standalone