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:
parent
18764cf6b5
commit
12766f293c
1 changed files with 3 additions and 3 deletions
|
|
@ -7,6 +7,6 @@ data:
|
|||
DB_HOST: "siriusdevops-pgdb-rw.customer1.svc.cluster.local"
|
||||
DB_PORT: "5432"
|
||||
DB_NAME: "trading_data"
|
||||
DATA_SERVICE_URL: "http://trading-data-service.customer1.svc.cluster.local"
|
||||
EXECUTE_SERVICE_URL: "http://trading-execute-service.customer1.svc.cluster.local"
|
||||
NEWS_SERVICE_URL: "http://trading-news-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:8000"
|
||||
NEWS_SERVICE_URL: "http://trading-news-service.customer1.svc.cluster.local:8000"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue