Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CICD Errors #129

Merged
merged 12 commits into from
Nov 12, 2024
13 changes: 0 additions & 13 deletions .github/workflows/backend-ci-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,3 @@ jobs:
npm run build
cd ../..
done

# Lint Check for Each Service
- name: Lint Each Service
run: |
npm install -g eslint

services=("auth-service" "code-execution-service" "collaboration-service" "gateway-service" "matching-service" "question-service" "user-service" "y-websocket-service")
for service in "${services[@]}"; do
echo "Linting $service"
cd backend/$service
npm run lint
cd ../..
done
File renamed without changes.
2 changes: 1 addition & 1 deletion k8s/auth-service/auth-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
containers:
- name: auth-service
image: asia-southeast1-docker.pkg.dev/peerprep-438213/peerprep/auth-service:latest
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
ports:
- containerPort: 3003
envFrom:
Expand Down
2 changes: 1 addition & 1 deletion k8s/code-execution-service/code-execution-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
containers:
- name: code-execution-service
image: asia-southeast1-docker.pkg.dev/peerprep-438213/peerprep/code-execution-service:latest
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
ports:
- containerPort: 3006
envFrom:
Expand Down
2 changes: 1 addition & 1 deletion k8s/collaboration-service/collaboration-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
containers:
- name: collaboration-service
image: asia-southeast1-docker.pkg.dev/peerprep-438213/peerprep/collaboration-service:latest
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
ports:
- containerPort: 3005
envFrom:
Expand Down
2 changes: 1 addition & 1 deletion k8s/gateway-service/gateway-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
containers:
- name: gateway-service
image: asia-southeast1-docker.pkg.dev/peerprep-438213/peerprep/gateway-service:latest
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
ports:
- containerPort: 4000
env:
Expand Down
2 changes: 1 addition & 1 deletion k8s/matching-service/matching-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
containers:
- name: matching-service
image: asia-southeast1-docker.pkg.dev/peerprep-438213/peerprep/matching-service:latest
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
ports:
- containerPort: 3004
envFrom:
Expand Down
2 changes: 1 addition & 1 deletion k8s/question-service/question-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
containers:
- name: question-service
image: asia-southeast1-docker.pkg.dev/peerprep-438213/peerprep/question-service:latest
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
ports:
- containerPort: 3002
envFrom:
Expand Down
2 changes: 1 addition & 1 deletion k8s/user-service/user-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
containers:
- name: user-service
image: asia-southeast1-docker.pkg.dev/peerprep-438213/peerprep/user-service:latest
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
ports:
- containerPort: 3001
envFrom:
Expand Down
2 changes: 1 addition & 1 deletion k8s/y-websocket-service/y-websocket-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
containers:
- name: y-websocket-service
image: asia-southeast1-docker.pkg.dev/peerprep-438213/peerprep/y-websocket-service:latest
imagePullPolicy: Always
imagePullPolicy: IfNotPresent
ports:
- containerPort: 4001
envFrom:
Expand Down
Loading