From 77a5a99c5f66a1b36d782158f3cc18b20bc04843 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Wed, 27 May 2026 20:20:38 +0000 Subject: [PATCH] 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. --- .../trading-platform/configmaps/dashboard-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/base/customer1/trading-platform/configmaps/dashboard-config.yaml b/apps/base/customer1/trading-platform/configmaps/dashboard-config.yaml index 67ecb56..13206f5 100644 --- a/apps/base/customer1/trading-platform/configmaps/dashboard-config.yaml +++ b/apps/base/customer1/trading-platform/configmaps/dashboard-config.yaml @@ -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:8001" + EXECUTE_SERVICE_URL: "http://trading-execute-service.customer1.svc.cluster.local:8000" + NEWS_SERVICE_URL: "http://trading-news-service.customer1.svc.cluster.local:8003"