diff options
author | Rich Megginson <rmeggins@redhat.com> | 2017-04-19 17:16:39 -0600 |
---|---|---|
committer | Rich Megginson <rmeggins@redhat.com> | 2017-04-19 17:16:39 -0600 |
commit | 8e9453047b317c3723a5bcf6e5901aaa783f5f43 (patch) | |
tree | 7d3364330c82e3bd8370d06b3d8d83e7a4cd546b /roles/openshift_logging/templates | |
parent | 5bb31fda251fc930cd83842fcf06afb7cc77c1c7 (diff) | |
download | openshift-8e9453047b317c3723a5bcf6e5901aaa783f5f43.tar.gz openshift-8e9453047b317c3723a5bcf6e5901aaa783f5f43.tar.bz2 openshift-8e9453047b317c3723a5bcf6e5901aaa783f5f43.tar.xz openshift-8e9453047b317c3723a5bcf6e5901aaa783f5f43.zip |
cast openshift_logging_use_mux_client to bool
Diffstat (limited to 'roles/openshift_logging/templates')
-rw-r--r-- | roles/openshift_logging/templates/fluentd.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
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 |