diff options
| author | Scott Dodson <sdodson@redhat.com> | 2017-06-28 11:16:01 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-28 11:16:01 -0400 | 
| commit | 9613d2e517ced0bc5d165801df3442ab331d214c (patch) | |
| tree | 2a355b2d4d099b1a92d9712246be1f3dbc845bc3 | |
| parent | 646c4a93ed6405c80bc634fa64081950e1bf8e0a (diff) | |
| parent | e6cfe56298b804839ddbcb091113584e7902bf76 (diff) | |
Merge pull request #4591 from richm/bug-1465168
Bug 1465168 - mux doesn't recognize ansible boolean parameters correctly
| -rw-r--r-- | roles/openshift_logging_mux/templates/mux.j2 | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/roles/openshift_logging_mux/templates/mux.j2 b/roles/openshift_logging_mux/templates/mux.j2 index 243698c6a..bd392c194 100644 --- a/roles/openshift_logging_mux/templates/mux.j2 +++ b/roles/openshift_logging_mux/templates/mux.j2 @@ -102,7 +102,7 @@ spec:          - name: USE_MUX            value: "true"          - name: MUX_ALLOW_EXTERNAL -          value: "{{ openshift_logging_mux_allow_external | default('false') }}" +          value: "{{ openshift_logging_mux_allow_external | default('false') | lower }}"          - name: "BUFFER_QUEUE_LIMIT"            value: "{{ openshift_logging_mux_buffer_queue_limit }}"          - name: "BUFFER_SIZE_LIMIT" | 
