Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #10207 from nhosoi/bz1554293
Bug 1554293 - logging-eventrouter event not formatted correctly in El…
  • Loading branch information
openshift-merge-robot committed Sep 26, 2018
2 parents 8bce82a + e215ce7 commit c00b980
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion roles/openshift_logging_fluentd/templates/fluentd.j2
Expand Up @@ -149,7 +149,7 @@ spec:
- name: "MUX_CLIENT_MODE"
value: "{{ openshift_logging_mux_client_mode }}"
{% endif %}
{% if openshift_logging_install_eventrouter is defined and openshift_logging_install_eventrouter %}
{% if openshift_logging_install_eventrouter is defined and (openshift_logging_install_eventrouter | bool) %}
- name: "TRANSFORM_EVENTS"
value: "true"
{% endif %}
Expand Down
4 changes: 4 additions & 0 deletions roles/openshift_logging_mux/templates/mux.j2
Expand Up @@ -128,6 +128,10 @@ spec:
resource: limits.memory
- name: "FILE_BUFFER_LIMIT"
value: "{{ openshift_logging_mux_file_buffer_limit | default('2Gi') }}"
{% if openshift_logging_install_eventrouter is defined and (openshift_logging_install_eventrouter | bool) %}
- name: "TRANSFORM_EVENTS"
value: "true"
{% endif %}

{% if openshift_logging_mux_remote_syslog is defined and openshift_logging_mux_remote_syslog %}
- name: USE_REMOTE_SYSLOG
Expand Down

0 comments on commit c00b980

Please sign in to comment.