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>
17 lines
410 B
YAML
17 lines
410 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: secret-common
|
|
namespace: phonebill-prod
|
|
type: Opaque
|
|
stringData:
|
|
# JWT 설정
|
|
JWT_SECRET: "your-production-jwt-secret-key-here-must-be-very-secure"
|
|
|
|
# Redis 설정
|
|
REDIS_HOST: "redis-prod-service"
|
|
REDIS_PORT: "6379"
|
|
REDIS_PASSWORD: "your-production-redis-password"
|
|
|
|
# 암호화 설정
|
|
ENCRYPTION_KEY: "your-production-encryption-key-32-chars" |