mirror of
https://github.com/cna-bootcamp/phonebill.git
synced 2025-12-06 08:06:24 +00:00
- 공통 매니페스트: Image Pull Secret, Ingress, ConfigMap, Secret - 서비스별 매니페스트: user-service, bill-service, product-service, api-gateway, kos-mock - 환경변수 매핑 테이블 작성 및 검증 완료 - 배포 가이드 및 트러블슈팅 문서 포함 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
278 B
YAML
14 lines
278 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: cm-user-service
|
|
namespace: phonebill-dev
|
|
data:
|
|
SERVER_PORT: "8081"
|
|
DB_KIND: "postgresql"
|
|
DB_NAME: "phonebill_auth"
|
|
DB_PORT: "5432"
|
|
DB_USERNAME: "auth_user"
|
|
DDL_AUTO: "update"
|
|
REDIS_DATABASE: "0"
|
|
SHOW_SQL: "true" |