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

View file

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

View file

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

View file

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

View file

@ -5,22 +5,22 @@ metadata:
namespace: nxtgauge namespace: nxtgauge
data: data:
RUST_LOG: "info" RUST_LOG: "info"
PORT: "8000" PORT: "10000"
FRONTEND_URL: "https://nxtgauge.com" FRONTEND_URL: "https://nxtgauge.com"
ADMIN_URL: "https://admin.nxtgauge.com" ADMIN_URL: "https://admin.nxtgauge.com"
USERS_SERVICE_URL: "http://nxtgauge-rust-users:8080" USERS_SERVICE_URL: "http://nxtgauge-rust-users:10001"
COMPANIES_SERVICE_URL: "http://nxtgauge-rust-companies:8081" COMPANIES_SERVICE_URL: "http://nxtgauge-rust-companies:10002"
JOB_SEEKERS_SERVICE_URL: "http://nxtgauge-rust-job-seekers:8082" JOB_SEEKERS_SERVICE_URL: "http://nxtgauge-rust-job-seekers:10003"
CUSTOMERS_SERVICE_URL: "http://nxtgauge-rust-customers:8083" CUSTOMERS_SERVICE_URL: "http://nxtgauge-rust-customers:10004"
PAYMENTS_SERVICE_URL: "http://nxtgauge-rust-payments:8094" PAYMENTS_SERVICE_URL: "http://nxtgauge-rust-payments:10005"
EMPLOYEES_SERVICE_URL: "http://nxtgauge-rust-employees:8096" EMPLOYEES_SERVICE_URL: "http://nxtgauge-rust-employees:10006"
PHOTOGRAPHERS_SERVICE_URL: "http://nxtgauge-rust-photographers:8085" PHOTOGRAPHERS_SERVICE_URL: "http://nxtgauge-rust-photographers:10007"
MAKEUP_ARTISTS_SERVICE_URL: "http://nxtgauge-rust-makeup-artists:8086" MAKEUP_ARTISTS_SERVICE_URL: "http://nxtgauge-rust-makeup-artists:10008"
TUTORS_SERVICE_URL: "http://nxtgauge-rust-tutors:8087" TUTORS_SERVICE_URL: "http://nxtgauge-rust-tutors:10009"
DEVELOPERS_SERVICE_URL: "http://nxtgauge-rust-developers:8088" DEVELOPERS_SERVICE_URL: "http://nxtgauge-rust-developers:10010"
VIDEO_EDITORS_SERVICE_URL: "http://nxtgauge-rust-video-editors:8089" VIDEO_EDITORS_SERVICE_URL: "http://nxtgauge-rust-video-editors:10011"
GRAPHIC_DESIGNERS_SERVICE_URL: "http://nxtgauge-rust-graphic-designers:8090" GRAPHIC_DESIGNERS_SERVICE_URL: "http://nxtgauge-rust-graphic-designers:10012"
SOCIAL_MEDIA_MANAGERS_SERVICE_URL: "http://nxtgauge-rust-social-media-managers:8091" SOCIAL_MEDIA_MANAGERS_SERVICE_URL: "http://nxtgauge-rust-social-media-managers:10013"
FITNESS_TRAINERS_SERVICE_URL: "http://nxtgauge-rust-fitness-trainers:8092" FITNESS_TRAINERS_SERVICE_URL: "http://nxtgauge-rust-fitness-trainers:10014"
CATERING_SERVICES_SERVICE_URL: "http://nxtgauge-rust-catering-services:8093" CATERING_SERVICES_SERVICE_URL: "http://nxtgauge-rust-catering-services:10015"
UGC_CONTENT_CREATORS_SERVICE_URL: "http://nxtgauge-rust-ugc-content-creators:8095" 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 image: ghcr.io/traceworks2023/nxtgauge-rust-customers
imagePullPolicy: Always imagePullPolicy: Always
ports: ports:
- containerPort: 8083 - containerPort: 10004
name: http name: http
envFrom: envFrom:
- configMapRef: - configMapRef:
@ -30,7 +30,7 @@ spec:
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /health path: /health
port: 8083 port: 10004
initialDelaySeconds: 10 initialDelaySeconds: 10
periodSeconds: 10 periodSeconds: 10
timeoutSeconds: 3 timeoutSeconds: 3
@ -38,7 +38,7 @@ spec:
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /health path: /health
port: 8083 port: 10004
initialDelaySeconds: 20 initialDelaySeconds: 20
periodSeconds: 20 periodSeconds: 20
timeoutSeconds: 3 timeoutSeconds: 3

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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