Skip to content

Commit 66351ac

Browse files
authored
Merge pull request #145 from CS3219-AY2425S1/chore/deploy-changes-api-gateway
deploy changes
2 parents 0665236 + 4cfcc62 commit 66351ac

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

api-gateway/src/routes/authRoutes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const authServiceProxy = createProxyMiddleware({
1313
'^/(.*)': '/api/v1/auth/$1', // Maps /login -> /api/v1/auth/login
1414
},
1515
on: {
16-
proxyReq: fixRequestBody, // need to fix the request body before forwarding
16+
proxyReq: fixRequestBody, // need to fix the request body before forwarding.
1717
},
1818
});
1919

k8s/question-service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ kind: Service
4141
metadata:
4242
name: question-svc
4343
spec:
44-
type: LoadBalancer
44+
type: ClusterIP
4545
ports:
4646
- port: 4001
4747
targetPort: 4001

k8s/user-service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ kind: Service
4040
metadata:
4141
name: user-svc
4242
spec:
43-
type: LoadBalancer
43+
type: ClusterIP
4444
ports:
4545
- port: 3001
4646
targetPort: 3001

0 commit comments

Comments
 (0)