fix(dashboard): add :8000 port to service URLs in ConfigMap

Next.js rewrites now use env vars (DATA_SERVICE_URL etc.) which point
to in-cluster services. Missing port caused rewrites to hit port 80
instead of 8000, breaking /api/data/* proxy (candles, orderbook).
This commit is contained in:
Hermes DevOps 2026-05-29 13:39:05 +00:00
parent 18764cf6b5
commit 12766f293c

View file

@ -7,6 +7,6 @@ data:
DB_HOST: "siriusdevops-pgdb-rw.customer1.svc.cluster.local" DB_HOST: "siriusdevops-pgdb-rw.customer1.svc.cluster.local"
DB_PORT: "5432" DB_PORT: "5432"
DB_NAME: "trading_data" DB_NAME: "trading_data"
DATA_SERVICE_URL: "http://trading-data-service.customer1.svc.cluster.local" DATA_SERVICE_URL: "http://trading-data-service.customer1.svc.cluster.local:8000"
EXECUTE_SERVICE_URL: "http://trading-execute-service.customer1.svc.cluster.local" EXECUTE_SERVICE_URL: "http://trading-execute-service.customer1.svc.cluster.local:8000"
NEWS_SERVICE_URL: "http://trading-news-service.customer1.svc.cluster.local" NEWS_SERVICE_URL: "http://trading-news-service.customer1.svc.cluster.local:8000"