Merge pull request #163 from sirius0xdev/fix/kafka-env-var-mismatch
fix configmap Kafka env var keys to match app code
This commit is contained in:
commit
8fc6bc16c3
2 changed files with 2 additions and 2 deletions
|
|
@ -9,5 +9,5 @@ data:
|
||||||
DB_NAME: "trading_data"
|
DB_NAME: "trading_data"
|
||||||
REDIS_HOST: "trading-redis.customer1.svc.cluster.local"
|
REDIS_HOST: "trading-redis.customer1.svc.cluster.local"
|
||||||
REDIS_PORT: "6379"
|
REDIS_PORT: "6379"
|
||||||
KAFKA_BROKER: "trading-kafka.customer1.svc.cluster.local:9092"
|
KAFKA_BOOTSTRAP_SERVERS: "trading-kafka.customer1.svc.cluster.local:9092"
|
||||||
LOG_LEVEL: "info"
|
LOG_LEVEL: "info"
|
||||||
|
|
|
||||||
|
|
@ -9,5 +9,5 @@ data:
|
||||||
EXECUTE_DB_NAME: "trading_data"
|
EXECUTE_DB_NAME: "trading_data"
|
||||||
EXECUTE_REDIS_HOST: "trading-redis.customer1.svc.cluster.local"
|
EXECUTE_REDIS_HOST: "trading-redis.customer1.svc.cluster.local"
|
||||||
EXECUTE_REDIS_PORT: "6379"
|
EXECUTE_REDIS_PORT: "6379"
|
||||||
EXECUTE_KAFKA_BOOTSTRAP_SERVERS: "trading-kafka.customer1.svc.cluster.local:9092"
|
KAFKA_BOOTSTRAP_SERVERS: "trading-kafka.customer1.svc.cluster.local:9092"
|
||||||
EXECUTE_LOG_LEVEL: "info"
|
EXECUTE_LOG_LEVEL: "info"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue