From 8e9453047b317c3723a5bcf6e5901aaa783f5f43 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Wed, 19 Apr 2017 17:16:39 -0600 Subject: cast openshift_logging_use_mux_client to bool --- roles/openshift_logging/templates/fluentd.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'roles/openshift_logging/templates') diff --git a/roles/openshift_logging/templates/fluentd.j2 b/roles/openshift_logging/templates/fluentd.j2 index 79761d4c4..d13691259 100644 --- a/roles/openshift_logging/templates/fluentd.j2 +++ b/roles/openshift_logging/templates/fluentd.j2 @@ -59,7 +59,7 @@ spec: - name: dockercfg mountPath: /etc/sysconfig/docker readOnly: true -{% if openshift_logging_use_mux_client %} +{% if openshift_logging_use_mux_client | bool %} - name: muxcerts mountPath: /etc/fluent/muxkeys readOnly: true @@ -154,7 +154,7 @@ spec: - name: dockercfg hostPath: path: /etc/sysconfig/docker -{% if openshift_logging_use_mux_client %} +{% if openshift_logging_use_mux_client | bool %} - name: muxcerts secret: secretName: logging-mux -- cgit v1.2.1