nxtgauge-gitops/apps/nxtgauge-backend-rust/base/configmap.yaml
Ashwin Kumar 13edaa96f0 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
2026-04-09 13:47:54 +02:00

26 lines
1.3 KiB
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: nxtgauge-backend-rust-config
namespace: nxtgauge
data:
RUST_LOG: "info"
PORT: "10000"
FRONTEND_URL: "https://nxtgauge.com"
ADMIN_URL: "https://admin.nxtgauge.com"
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"