fix(ansible): duplicate colon
Signed-off-by: Rajesh Rajendran <rjshrjndrn@gmail.com>
This commit is contained in:
parent
7051820a66
commit
dc336dcfaf
1 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue