apiVersion: v1 kind: Secret metadata: name: secret-user-service namespace: phonebill-prod type: Opaque stringData: # 사용자 서비스 전용 데이터베이스 연결정보 DB_HOST: "auth-postgres-prod-service" DB_PORT: "5432" DB_NAME: "auth_db" DB_USERNAME: "postgres" DB_PASSWORD: "your-production-auth-db-password" # 데이터베이스 연결 풀 설정 (프로덕션 최적화) DB_MAX_POOL_SIZE: "20" DB_MIN_IDLE: "5" DB_CONNECTION_TIMEOUT: "30000"