fix(ansible): duplicate colon

Signed-off-by: Rajesh Rajendran <rjshrjndrn@gmail.com>
This commit is contained in:
Rajesh Rajendran 2022-01-26 09:13:36 +05:30
parent 7051820a66
commit dc336dcfaf

View file

@ -24,14 +24,14 @@ kafka: &kafka
# For enterpriseEdition
# enabled: true
kafkaHost: "{{ kafka_endpoint }}"
kafkaHost: "{{ kafka_endpoint.split(':')[0] }}"
kafkaPort: "{{ kafka_endpoint.split(':')[-1] }}"
kafkaUseSsl: "{{ kafka_ssl }}"
redis: &redis
# For enterpriseEdition
# enabled: false
redisHost: "{{ redis_endpoint }}"
redisHost: "{{ redis_endpoint.split(':')[0] }}"
redisPort: "{{ redis_endpoint.split(':')[-1] }}"
minio: