config(dashboard): add ports to service URLs

Service-to-service calls need explicit ports. Without them, dashboard
proxy was hitting port 80 which doesn't exist on backend services.
This commit is contained in:
Hermes Agent 2026-05-27 20:20:38 +00:00
parent 89bd139ba9
commit 77a5a99c5f

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:8001"
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:8003"