mirror of
https://github.com/cna-bootcamp/phonebill.git
synced 2025-12-06 08:06:24 +00:00
- Kustomize 기반 환경별 배포 구성 (dev/staging/prod) - Jenkins 파이프라인 with SonarQube 품질 게이트 - 파드 자동 정리 및 보안 강화 설정 - 환경별 차등 리소스 할당 및 도메인 설정 - 수동 배포 및 검증 스크립트 제공 - 5개 마이크로서비스 병렬 빌드/배포 지원 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
259 B
YAML
9 lines
259 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: secret-user-service
|
|
type: Opaque
|
|
stringData:
|
|
# User Service DB 접속 정보 (개발 환경)
|
|
DB_PASSWORD: "userdb-dev-password"
|
|
DB_URL: "jdbc:postgresql://user-auth-postgres-dev-postgresql:5432/user_auth_db" |