diff options
| author | Eric Wolinetz <ewolinet@redhat.com> | 2017-10-25 20:45:34 -0500 | 
|---|---|---|
| committer | Eric Wolinetz <ewolinet@redhat.com> | 2018-01-02 11:16:04 -0600 | 
| commit | 8cb27ae800df71ee816852df56cd2c861a0f0a0a (patch) | |
| tree | 9a3f000d6bb886296912df6de0ececdfe7783a53 /roles/openshift_logging_mux | |
| parent | 332764e4541d8c922f2589a533bb56b2a2419ac1 (diff) | |
| download | openshift-8cb27ae800df71ee816852df56cd2c861a0f0a0a.tar.gz openshift-8cb27ae800df71ee816852df56cd2c861a0f0a0a.tar.bz2 openshift-8cb27ae800df71ee816852df56cd2c861a0f0a0a.tar.xz openshift-8cb27ae800df71ee816852df56cd2c861a0f0a0a.zip | |
Updating logging_facts to be able to pull values from config maps yaml files, use diffs to keep custom changes, white list certain settings when creating diffs
Diffstat (limited to 'roles/openshift_logging_mux')
| -rw-r--r-- | roles/openshift_logging_mux/tasks/main.yaml | 24 | 
1 files changed, 11 insertions, 13 deletions
| diff --git a/roles/openshift_logging_mux/tasks/main.yaml b/roles/openshift_logging_mux/tasks/main.yaml index 59a6301d7..a281c6a53 100644 --- a/roles/openshift_logging_mux/tasks/main.yaml +++ b/roles/openshift_logging_mux/tasks/main.yaml @@ -88,26 +88,24 @@  - copy:      src: fluent.conf      dest: "{{mktemp.stdout}}/fluent-mux.conf" -  when: fluentd_mux_config_contents is undefined    changed_when: no  - copy:      src: secure-forward.conf      dest: "{{mktemp.stdout}}/secure-forward-mux.conf" -  when: fluentd_mux_securefoward_contents is undefined    changed_when: no -- copy: -    content: "{{fluentd_mux_config_contents}}" -    dest: "{{mktemp.stdout}}/fluent-mux.conf" -  when: fluentd_mux_config_contents is defined -  changed_when: no - -- copy: -    content: "{{fluentd_mux_secureforward_contents}}" -    dest: "{{mktemp.stdout}}/secure-forward-mux.conf" -  when: fluentd_mux_secureforward_contents is defined -  changed_when: no +- include_role: +    name: openshift_logging +    tasks_from: patch_configmap_files.yaml +  vars: +    configmap_name: "logging-mux" +    configmap_namespace: "{{ openshift_logging_mux_namespace }}" +    configmap_file_names: +      - current_file: "fluent.conf" +        new_file: "{{ tempdir }}/fluent-mux.conf" +      - current_file: "secure-forward.conf" +        new_file: "{{ tempdir }}/secure-forward-mux.conf"  - name: Set Mux configmap    oc_configmap: | 
