mirror of
https://github.com/won-ktds/smarketing-backend.git
synced 2025-12-06 15:16:23 +00:00
Merge branch 'main' of https://github.com/won-ktds/smarketing-backend into poster-content
This commit is contained in:
commit
af55c5fed1
@ -462,6 +462,7 @@ spec:
|
|||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
|
|
||||||
---
|
---
|
||||||
|
# deploy.yaml.template의 Ingress 부분 - 완전한 설정
|
||||||
apiVersion: networking.k8s.io/v1
|
apiVersion: networking.k8s.io/v1
|
||||||
kind: Ingress
|
kind: Ingress
|
||||||
metadata:
|
metadata:
|
||||||
@ -478,6 +479,7 @@ spec:
|
|||||||
- host: smarketing.20.249.184.228.nip.io
|
- host: smarketing.20.249.184.228.nip.io
|
||||||
http:
|
http:
|
||||||
paths:
|
paths:
|
||||||
|
# Member 서비스 - 인증 관련
|
||||||
- path: /api/auth(/|$)(.*)
|
- path: /api/auth(/|$)(.*)
|
||||||
pathType: ImplementationSpecific
|
pathType: ImplementationSpecific
|
||||||
backend:
|
backend:
|
||||||
@ -485,6 +487,15 @@ spec:
|
|||||||
name: member
|
name: member
|
||||||
port:
|
port:
|
||||||
number: 80
|
number: 80
|
||||||
|
# Member 서비스 - 회원 관리 (누락된 경로!)
|
||||||
|
- path: /api/member(/|$)(.*)
|
||||||
|
pathType: ImplementationSpecific
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: member
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
|
# Store 서비스
|
||||||
- path: /api/store(/|$)(.*)
|
- path: /api/store(/|$)(.*)
|
||||||
pathType: ImplementationSpecific
|
pathType: ImplementationSpecific
|
||||||
backend:
|
backend:
|
||||||
@ -492,6 +503,31 @@ spec:
|
|||||||
name: store
|
name: store
|
||||||
port:
|
port:
|
||||||
number: 80
|
number: 80
|
||||||
|
# Store 서비스 - 매출 관련
|
||||||
|
- path: /api/sales(/|$)(.*)
|
||||||
|
pathType: ImplementationSpecific
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: store
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
|
# Store 서비스 - 메뉴 관련
|
||||||
|
- path: /api/menu(/|$)(.*)
|
||||||
|
pathType: ImplementationSpecific
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: store
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
|
# Store 서비스 - 이미지 업로드
|
||||||
|
- path: /api/images(/|$)(.*)
|
||||||
|
pathType: ImplementationSpecific
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: store
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
|
# Marketing Content 서비스
|
||||||
- path: /api/content(/|$)(.*)
|
- path: /api/content(/|$)(.*)
|
||||||
pathType: ImplementationSpecific
|
pathType: ImplementationSpecific
|
||||||
backend:
|
backend:
|
||||||
@ -499,6 +535,7 @@ spec:
|
|||||||
name: marketing-content
|
name: marketing-content
|
||||||
port:
|
port:
|
||||||
number: 80
|
number: 80
|
||||||
|
# AI Recommend 서비스
|
||||||
- path: /api/recommend(/|$)(.*)
|
- path: /api/recommend(/|$)(.*)
|
||||||
pathType: ImplementationSpecific
|
pathType: ImplementationSpecific
|
||||||
backend:
|
backend:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user