diff --git a/apps/nxtgauge-backend-rust/base/catering-services-deployment.yaml b/apps/nxtgauge-backend-rust/base/catering-services-deployment.yaml index a1d6ddc..3391ce3 100644 --- a/apps/nxtgauge-backend-rust/base/catering-services-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/catering-services-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/catering-services-service.yaml b/apps/nxtgauge-backend-rust/base/catering-services-service.yaml index 8938428..d057061 100644 --- a/apps/nxtgauge-backend-rust/base/catering-services-service.yaml +++ b/apps/nxtgauge-backend-rust/base/catering-services-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-catering-services ports: - name: http - port: 8093 - targetPort: 8093 + port: 10015 + targetPort: 10015 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/companies-deployment.yaml b/apps/nxtgauge-backend-rust/base/companies-deployment.yaml index c0f5530..e4c40f6 100644 --- a/apps/nxtgauge-backend-rust/base/companies-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/companies-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/companies-service.yaml b/apps/nxtgauge-backend-rust/base/companies-service.yaml index f8c22bf..f8f7ca7 100644 --- a/apps/nxtgauge-backend-rust/base/companies-service.yaml +++ b/apps/nxtgauge-backend-rust/base/companies-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-companies ports: - name: http - port: 8081 - targetPort: 8081 + port: 10002 + targetPort: 10002 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/configmap.yaml b/apps/nxtgauge-backend-rust/base/configmap.yaml index 8d16587..fa9326e 100644 --- a/apps/nxtgauge-backend-rust/base/configmap.yaml +++ b/apps/nxtgauge-backend-rust/base/configmap.yaml @@ -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" diff --git a/apps/nxtgauge-backend-rust/base/customers-deployment.yaml b/apps/nxtgauge-backend-rust/base/customers-deployment.yaml index da3c57c..1cd5dce 100644 --- a/apps/nxtgauge-backend-rust/base/customers-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/customers-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/customers-service.yaml b/apps/nxtgauge-backend-rust/base/customers-service.yaml index fe5cd7f..e8aa662 100644 --- a/apps/nxtgauge-backend-rust/base/customers-service.yaml +++ b/apps/nxtgauge-backend-rust/base/customers-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-customers ports: - name: http - port: 8083 - targetPort: 8083 + port: 10004 + targetPort: 10004 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/developers-deployment.yaml b/apps/nxtgauge-backend-rust/base/developers-deployment.yaml index f0aed16..5ef5d6f 100644 --- a/apps/nxtgauge-backend-rust/base/developers-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/developers-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/developers-service.yaml b/apps/nxtgauge-backend-rust/base/developers-service.yaml index d6067b5..6cbf266 100644 --- a/apps/nxtgauge-backend-rust/base/developers-service.yaml +++ b/apps/nxtgauge-backend-rust/base/developers-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-developers ports: - name: http - port: 8088 - targetPort: 8088 + port: 10010 + targetPort: 10010 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/employees-deployment.yaml b/apps/nxtgauge-backend-rust/base/employees-deployment.yaml index f5d6f09..2441027 100644 --- a/apps/nxtgauge-backend-rust/base/employees-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/employees-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/employees-service.yaml b/apps/nxtgauge-backend-rust/base/employees-service.yaml index 1dd73f8..256597c 100644 --- a/apps/nxtgauge-backend-rust/base/employees-service.yaml +++ b/apps/nxtgauge-backend-rust/base/employees-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-employees ports: - name: http - port: 8096 - targetPort: 8096 + port: 10006 + targetPort: 10006 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/fitness-trainers-deployment.yaml b/apps/nxtgauge-backend-rust/base/fitness-trainers-deployment.yaml index 87a935d..5a15349 100644 --- a/apps/nxtgauge-backend-rust/base/fitness-trainers-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/fitness-trainers-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/fitness-trainers-service.yaml b/apps/nxtgauge-backend-rust/base/fitness-trainers-service.yaml index ada28b1..5df89cc 100644 --- a/apps/nxtgauge-backend-rust/base/fitness-trainers-service.yaml +++ b/apps/nxtgauge-backend-rust/base/fitness-trainers-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-fitness-trainers ports: - name: http - port: 8092 - targetPort: 8092 + port: 10014 + targetPort: 10014 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/gateway-deployment.yaml b/apps/nxtgauge-backend-rust/base/gateway-deployment.yaml index 92274ca..edb74f3 100644 --- a/apps/nxtgauge-backend-rust/base/gateway-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/gateway-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/gateway-service.yaml b/apps/nxtgauge-backend-rust/base/gateway-service.yaml index c44bf28..c4c2066 100644 --- a/apps/nxtgauge-backend-rust/base/gateway-service.yaml +++ b/apps/nxtgauge-backend-rust/base/gateway-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-gateway ports: - name: http - port: 8000 - targetPort: 8000 + port: 10000 + targetPort: 10000 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/graphic-designers-deployment.yaml b/apps/nxtgauge-backend-rust/base/graphic-designers-deployment.yaml index e729981..8791fb8 100644 --- a/apps/nxtgauge-backend-rust/base/graphic-designers-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/graphic-designers-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/graphic-designers-service.yaml b/apps/nxtgauge-backend-rust/base/graphic-designers-service.yaml index e22ebb9..e86c08a 100644 --- a/apps/nxtgauge-backend-rust/base/graphic-designers-service.yaml +++ b/apps/nxtgauge-backend-rust/base/graphic-designers-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-graphic-designers ports: - name: http - port: 8090 - targetPort: 8090 + port: 10012 + targetPort: 10012 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/ingress.yaml b/apps/nxtgauge-backend-rust/base/ingress.yaml index c10ec01..2020950 100644 --- a/apps/nxtgauge-backend-rust/base/ingress.yaml +++ b/apps/nxtgauge-backend-rust/base/ingress.yaml @@ -15,4 +15,4 @@ spec: service: name: nxtgauge-rust-gateway port: - number: 8000 + number: 10000 diff --git a/apps/nxtgauge-backend-rust/base/job-seekers-deployment.yaml b/apps/nxtgauge-backend-rust/base/job-seekers-deployment.yaml index 0305c52..41e295c 100644 --- a/apps/nxtgauge-backend-rust/base/job-seekers-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/job-seekers-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/job-seekers-service.yaml b/apps/nxtgauge-backend-rust/base/job-seekers-service.yaml index a94f976..a096783 100644 --- a/apps/nxtgauge-backend-rust/base/job-seekers-service.yaml +++ b/apps/nxtgauge-backend-rust/base/job-seekers-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-job-seekers ports: - name: http - port: 8082 - targetPort: 8082 + port: 10003 + targetPort: 10003 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/makeup-artists-deployment.yaml b/apps/nxtgauge-backend-rust/base/makeup-artists-deployment.yaml index 2fcb8f8..ce8d89b 100644 --- a/apps/nxtgauge-backend-rust/base/makeup-artists-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/makeup-artists-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/makeup-artists-service.yaml b/apps/nxtgauge-backend-rust/base/makeup-artists-service.yaml index 21e1eff..3e58061 100644 --- a/apps/nxtgauge-backend-rust/base/makeup-artists-service.yaml +++ b/apps/nxtgauge-backend-rust/base/makeup-artists-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-makeup-artists ports: - name: http - port: 8086 - targetPort: 8086 + port: 10008 + targetPort: 10008 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/payments-deployment.yaml b/apps/nxtgauge-backend-rust/base/payments-deployment.yaml index 2296aeb..e5e7375 100644 --- a/apps/nxtgauge-backend-rust/base/payments-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/payments-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/payments-service.yaml b/apps/nxtgauge-backend-rust/base/payments-service.yaml index 2087985..a2c7665 100644 --- a/apps/nxtgauge-backend-rust/base/payments-service.yaml +++ b/apps/nxtgauge-backend-rust/base/payments-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-payments ports: - name: http - port: 8094 - targetPort: 8094 + port: 10005 + targetPort: 10005 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/photographers-deployment.yaml b/apps/nxtgauge-backend-rust/base/photographers-deployment.yaml index ad03380..d3046f9 100644 --- a/apps/nxtgauge-backend-rust/base/photographers-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/photographers-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/photographers-service.yaml b/apps/nxtgauge-backend-rust/base/photographers-service.yaml index 042d659..4e19661 100644 --- a/apps/nxtgauge-backend-rust/base/photographers-service.yaml +++ b/apps/nxtgauge-backend-rust/base/photographers-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-photographers ports: - name: http - port: 8085 - targetPort: 8085 + port: 10007 + targetPort: 10007 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/social-media-managers-deployment.yaml b/apps/nxtgauge-backend-rust/base/social-media-managers-deployment.yaml index e215852..e5ea4aa 100644 --- a/apps/nxtgauge-backend-rust/base/social-media-managers-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/social-media-managers-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/social-media-managers-service.yaml b/apps/nxtgauge-backend-rust/base/social-media-managers-service.yaml index 89f15cf..b75080b 100644 --- a/apps/nxtgauge-backend-rust/base/social-media-managers-service.yaml +++ b/apps/nxtgauge-backend-rust/base/social-media-managers-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-social-media-managers ports: - name: http - port: 8091 - targetPort: 8091 + port: 10013 + targetPort: 10013 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/tutors-deployment.yaml b/apps/nxtgauge-backend-rust/base/tutors-deployment.yaml index b0a347b..319eb25 100644 --- a/apps/nxtgauge-backend-rust/base/tutors-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/tutors-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/tutors-service.yaml b/apps/nxtgauge-backend-rust/base/tutors-service.yaml index 092e005..ff91fb5 100644 --- a/apps/nxtgauge-backend-rust/base/tutors-service.yaml +++ b/apps/nxtgauge-backend-rust/base/tutors-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-tutors ports: - name: http - port: 8087 - targetPort: 8087 + port: 10009 + targetPort: 10009 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/ugc-content-creators-deployment.yaml b/apps/nxtgauge-backend-rust/base/ugc-content-creators-deployment.yaml index 3a5f98e..28e6e7b 100644 --- a/apps/nxtgauge-backend-rust/base/ugc-content-creators-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/ugc-content-creators-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/ugc-content-creators-service.yaml b/apps/nxtgauge-backend-rust/base/ugc-content-creators-service.yaml index 32e697e..6888f74 100644 --- a/apps/nxtgauge-backend-rust/base/ugc-content-creators-service.yaml +++ b/apps/nxtgauge-backend-rust/base/ugc-content-creators-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-ugc-content-creators ports: - name: http - port: 8095 - targetPort: 8095 + port: 10016 + targetPort: 10016 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/users-deployment.yaml b/apps/nxtgauge-backend-rust/base/users-deployment.yaml index 31c0b30..e223083 100644 --- a/apps/nxtgauge-backend-rust/base/users-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/users-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/users-service.yaml b/apps/nxtgauge-backend-rust/base/users-service.yaml index 90fcbd4..6e206ce 100644 --- a/apps/nxtgauge-backend-rust/base/users-service.yaml +++ b/apps/nxtgauge-backend-rust/base/users-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-users ports: - name: http - port: 8080 - targetPort: 8080 + port: 10001 + targetPort: 10001 protocol: TCP diff --git a/apps/nxtgauge-backend-rust/base/video-editors-deployment.yaml b/apps/nxtgauge-backend-rust/base/video-editors-deployment.yaml index 230fbbe..3bf74d4 100644 --- a/apps/nxtgauge-backend-rust/base/video-editors-deployment.yaml +++ b/apps/nxtgauge-backend-rust/base/video-editors-deployment.yaml @@ -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 diff --git a/apps/nxtgauge-backend-rust/base/video-editors-service.yaml b/apps/nxtgauge-backend-rust/base/video-editors-service.yaml index 235e79b..46abb60 100644 --- a/apps/nxtgauge-backend-rust/base/video-editors-service.yaml +++ b/apps/nxtgauge-backend-rust/base/video-editors-service.yaml @@ -11,6 +11,6 @@ spec: app: nxtgauge-rust-video-editors ports: - name: http - port: 8089 - targetPort: 8089 + port: 10011 + targetPort: 10011 protocol: TCP