From dc336dcfaf9e2fede5520b90b16d4e390afab171 Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Wed, 26 Jan 2022 09:13:36 +0530 Subject: [PATCH] fix(ansible): duplicate colon Signed-off-by: Rajesh Rajendran --- scripts/helmcharts/vars_template.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/helmcharts/vars_template.yaml b/scripts/helmcharts/vars_template.yaml index 84ce36ee6..2230e0a75 100644 --- a/scripts/helmcharts/vars_template.yaml +++ b/scripts/helmcharts/vars_template.yaml @@ -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: