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:
parent
89bd139ba9
commit
77a5a99c5f
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: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"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue