mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 14:06:23 +00:00
- GitHub Actions workflow로 백엔드 서비스 자동 빌드/배포 구성 - Kustomize를 통한 dev/staging/prod 환경별 설정 관리 - 각 마이크로서비스별 Dockerfile 추가 - 배포 자동화 스크립트 및 환경 변수 설정 - CI/CD 가이드 문서 작성
29 lines
792 B
YAML
29 lines
792 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: cm-distribution-service
|
|
data:
|
|
# Server Configuration
|
|
SERVER_PORT: "8085"
|
|
|
|
# Database Configuration
|
|
DB_HOST: "distribution-postgresql"
|
|
DB_PORT: "5432"
|
|
DB_NAME: "distributiondb"
|
|
DB_USERNAME: "eventuser"
|
|
|
|
# Kafka Configuration
|
|
KAFKA_ENABLED: "true"
|
|
KAFKA_CONSUMER_GROUP: "distribution-service"
|
|
|
|
# External Channel APIs
|
|
URIDONGNETV_API_URL: "http://localhost:9001/api/uridongnetv"
|
|
RINGOBIZ_API_URL: "http://localhost:9002/api/ringobiz"
|
|
GINITV_API_URL: "http://localhost:9003/api/ginitv"
|
|
INSTAGRAM_API_URL: "http://localhost:9004/api/instagram"
|
|
NAVER_API_URL: "http://localhost:9005/api/naver"
|
|
KAKAO_API_URL: "http://localhost:9006/api/kakao"
|
|
|
|
# Logging Configuration
|
|
LOG_FILE: "logs/distribution-service.log"
|