fix: change all service ports to 10000+ range to avoid conflicts

Moved all backend service ports from 8000-8096 range to 10000-10016 range
to avoid port conflicts causing pod shutdowns.

Port assignments:
- Gateway:              10000 (was 8000)
- Users:                10001 (was 8080)
- Companies:            10002 (was 8081)
- Job Seekers:          10003 (was 8082)
- Customers:            10004 (was 8083)
- Payments:             10005 (was 8094)
- Employees:            10006 (was 8096)
- Photographers:        10007 (was 8085)
- Makeup Artists:       10008 (was 8086)
- Tutors:               10009 (was 8087)
- Developers:           10010 (was 8088)
- Video Editors:        10011 (was 8089)
- Graphic Designers:    10012 (was 8090)
- Social Media Managers: 10013 (was 8091)
- Fitness Trainers:     10014 (was 8092)
- Catering Services:    10015 (was 8093)
- UGC Content Creators: 10016 (was 8095)

Updated: deployments, services, configmap, ingress
This commit is contained in:
Ashwin Kumar 2026-04-09 13:47:54 +02:00
parent 8856d7edaf
commit 13edaa96f0
36 changed files with 103 additions and 103 deletions

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-catering-services
imagePullPolicy: Always
ports:
- containerPort: 8093
- containerPort: 10015
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8093
port: 10015
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8093
port: 10015
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-catering-services
ports:
- name: http
port: 8093
targetPort: 8093
port: 10015
targetPort: 10015
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-companies
imagePullPolicy: Always
ports:
- containerPort: 8081
- containerPort: 10002
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8081
port: 10002
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8081
port: 10002
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-companies
ports:
- name: http
port: 8081
targetPort: 8081
port: 10002
targetPort: 10002
protocol: TCP

View file

@ -5,22 +5,22 @@ metadata:
namespace: nxtgauge
data:
RUST_LOG: "info"
PORT: "8000"
PORT: "10000"
FRONTEND_URL: "https://nxtgauge.com"
ADMIN_URL: "https://admin.nxtgauge.com"
USERS_SERVICE_URL: "http://nxtgauge-rust-users:8080"
COMPANIES_SERVICE_URL: "http://nxtgauge-rust-companies:8081"
JOB_SEEKERS_SERVICE_URL: "http://nxtgauge-rust-job-seekers:8082"
CUSTOMERS_SERVICE_URL: "http://nxtgauge-rust-customers:8083"
PAYMENTS_SERVICE_URL: "http://nxtgauge-rust-payments:8094"
EMPLOYEES_SERVICE_URL: "http://nxtgauge-rust-employees:8096"
PHOTOGRAPHERS_SERVICE_URL: "http://nxtgauge-rust-photographers:8085"
MAKEUP_ARTISTS_SERVICE_URL: "http://nxtgauge-rust-makeup-artists:8086"
TUTORS_SERVICE_URL: "http://nxtgauge-rust-tutors:8087"
DEVELOPERS_SERVICE_URL: "http://nxtgauge-rust-developers:8088"
VIDEO_EDITORS_SERVICE_URL: "http://nxtgauge-rust-video-editors:8089"
GRAPHIC_DESIGNERS_SERVICE_URL: "http://nxtgauge-rust-graphic-designers:8090"
SOCIAL_MEDIA_MANAGERS_SERVICE_URL: "http://nxtgauge-rust-social-media-managers:8091"
FITNESS_TRAINERS_SERVICE_URL: "http://nxtgauge-rust-fitness-trainers:8092"
CATERING_SERVICES_SERVICE_URL: "http://nxtgauge-rust-catering-services:8093"
UGC_CONTENT_CREATORS_SERVICE_URL: "http://nxtgauge-rust-ugc-content-creators:8095"
USERS_SERVICE_URL: "http://nxtgauge-rust-users:10001"
COMPANIES_SERVICE_URL: "http://nxtgauge-rust-companies:10002"
JOB_SEEKERS_SERVICE_URL: "http://nxtgauge-rust-job-seekers:10003"
CUSTOMERS_SERVICE_URL: "http://nxtgauge-rust-customers:10004"
PAYMENTS_SERVICE_URL: "http://nxtgauge-rust-payments:10005"
EMPLOYEES_SERVICE_URL: "http://nxtgauge-rust-employees:10006"
PHOTOGRAPHERS_SERVICE_URL: "http://nxtgauge-rust-photographers:10007"
MAKEUP_ARTISTS_SERVICE_URL: "http://nxtgauge-rust-makeup-artists:10008"
TUTORS_SERVICE_URL: "http://nxtgauge-rust-tutors:10009"
DEVELOPERS_SERVICE_URL: "http://nxtgauge-rust-developers:10010"
VIDEO_EDITORS_SERVICE_URL: "http://nxtgauge-rust-video-editors:10011"
GRAPHIC_DESIGNERS_SERVICE_URL: "http://nxtgauge-rust-graphic-designers:10012"
SOCIAL_MEDIA_MANAGERS_SERVICE_URL: "http://nxtgauge-rust-social-media-managers:10013"
FITNESS_TRAINERS_SERVICE_URL: "http://nxtgauge-rust-fitness-trainers:10014"
CATERING_SERVICES_SERVICE_URL: "http://nxtgauge-rust-catering-services:10015"
UGC_CONTENT_CREATORS_SERVICE_URL: "http://nxtgauge-rust-ugc-content-creators:10016"

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-customers
imagePullPolicy: Always
ports:
- containerPort: 8083
- containerPort: 10004
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8083
port: 10004
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8083
port: 10004
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-customers
ports:
- name: http
port: 8083
targetPort: 8083
port: 10004
targetPort: 10004
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-developers
imagePullPolicy: Always
ports:
- containerPort: 8088
- containerPort: 10010
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8088
port: 10010
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8088
port: 10010
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-developers
ports:
- name: http
port: 8088
targetPort: 8088
port: 10010
targetPort: 10010
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-employees
imagePullPolicy: Always
ports:
- containerPort: 8096
- containerPort: 10006
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8096
port: 10006
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8096
port: 10006
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-employees
ports:
- name: http
port: 8096
targetPort: 8096
port: 10006
targetPort: 10006
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-fitness-trainers
imagePullPolicy: Always
ports:
- containerPort: 8092
- containerPort: 10014
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8092
port: 10014
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8092
port: 10014
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-fitness-trainers
ports:
- name: http
port: 8092
targetPort: 8092
port: 10014
targetPort: 10014
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-gateway
imagePullPolicy: Always
ports:
- containerPort: 8000
- containerPort: 10000
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8000
port: 10000
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8000
port: 10000
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-gateway
ports:
- name: http
port: 8000
targetPort: 8000
port: 10000
targetPort: 10000
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-graphic-designers
imagePullPolicy: Always
ports:
- containerPort: 8090
- containerPort: 10012
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8090
port: 10012
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8090
port: 10012
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-graphic-designers
ports:
- name: http
port: 8090
targetPort: 8090
port: 10012
targetPort: 10012
protocol: TCP

View file

@ -15,4 +15,4 @@ spec:
service:
name: nxtgauge-rust-gateway
port:
number: 8000
number: 10000

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-job-seekers
imagePullPolicy: Always
ports:
- containerPort: 8082
- containerPort: 10003
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8082
port: 10003
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8082
port: 10003
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-job-seekers
ports:
- name: http
port: 8082
targetPort: 8082
port: 10003
targetPort: 10003
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-makeup-artists
imagePullPolicy: Always
ports:
- containerPort: 8086
- containerPort: 10008
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8086
port: 10008
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8086
port: 10008
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-makeup-artists
ports:
- name: http
port: 8086
targetPort: 8086
port: 10008
targetPort: 10008
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-payments
imagePullPolicy: Always
ports:
- containerPort: 8094
- containerPort: 10005
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8094
port: 10005
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8094
port: 10005
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-payments
ports:
- name: http
port: 8094
targetPort: 8094
port: 10005
targetPort: 10005
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-photographers
imagePullPolicy: Always
ports:
- containerPort: 8085
- containerPort: 10007
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8085
port: 10007
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8085
port: 10007
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-photographers
ports:
- name: http
port: 8085
targetPort: 8085
port: 10007
targetPort: 10007
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-social-media-managers
imagePullPolicy: Always
ports:
- containerPort: 8091
- containerPort: 10013
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8091
port: 10013
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8091
port: 10013
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-social-media-managers
ports:
- name: http
port: 8091
targetPort: 8091
port: 10013
targetPort: 10013
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-tutors
imagePullPolicy: Always
ports:
- containerPort: 8087
- containerPort: 10009
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8087
port: 10009
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8087
port: 10009
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-tutors
ports:
- name: http
port: 8087
targetPort: 8087
port: 10009
targetPort: 10009
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-ugc-content-creators
imagePullPolicy: Always
ports:
- containerPort: 8095
- containerPort: 10016
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8095
port: 10016
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8095
port: 10016
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-ugc-content-creators
ports:
- name: http
port: 8095
targetPort: 8095
port: 10016
targetPort: 10016
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-users
imagePullPolicy: Always
ports:
- containerPort: 8080
- containerPort: 10001
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8080
port: 10001
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8080
port: 10001
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-users
ports:
- name: http
port: 8080
targetPort: 8080
port: 10001
targetPort: 10001
protocol: TCP

View file

@ -20,7 +20,7 @@ spec:
image: ghcr.io/traceworks2023/nxtgauge-rust-video-editors
imagePullPolicy: Always
ports:
- containerPort: 8089
- containerPort: 10011
name: http
envFrom:
- configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe:
httpGet:
path: /health
port: 8089
port: 10011
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 8089
port: 10011
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3

View file

@ -11,6 +11,6 @@ spec:
app: nxtgauge-rust-video-editors
ports:
- name: http
port: 8089
targetPort: 8089
port: 10011
targetPort: 10011
protocol: TCP