mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 18:06:23 +00:00
- GitHub Actions workflow로 백엔드 서비스 자동 빌드/배포 구성 - Kustomize를 통한 dev/staging/prod 환경별 설정 관리 - 각 마이크로서비스별 Dockerfile 추가 - 배포 자동화 스크립트 및 환경 변수 설정 - CI/CD 가이드 문서 작성
16 lines
258 B
YAML
16 lines
258 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: distribution-service
|
|
labels:
|
|
app: distribution-service
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: distribution-service
|
|
ports:
|
|
- name: http
|
|
port: 80
|
|
targetPort: 8085
|
|
protocol: TCP
|