Browse Source

Bug 1465168 - mux doesn't recognize ansible boolean parameters correctly

https://bugzilla.redhat.com/show_bug.cgi?id=1465168
The fix is to pass the value through the `lower` filter.  The value is
set in defaults/main.yaml so it should always have a value.
Rich Megginson 7 years ago
parent
commit
e6cfe56298
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/openshift_logging_mux/templates/mux.j2

+ 1 - 1
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"