- Add 'trading' managed role to siriusdevops-pgdb cluster - Move trading-db-credentials from hermes-db to siriusdevops-db - Create trading-data-db.yaml (Database kind) pointing to siriusdevops-pgdb - Update DB_HOST in all 4 trading-platform configmaps to siriusdevops-pgdb-rw - Remove trading-data-db.yaml and trading-db-credentials.yaml from hermes-db - Update siriusdevops-db kustomization.yaml to include new resources
12 lines
449 B
YAML
12 lines
449 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: trading-dashboard-config
|
|
namespace: customer1
|
|
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"
|