|
@@ -239,6 +239,17 @@
|
|
|
- current_file: "logging.yml"
|
|
|
new_file: "{{ tempdir }}/elasticsearch-logging.yml"
|
|
|
|
|
|
+ - slurp:
|
|
|
+ src: "{{ tempdir }}/elasticsearch.yml"
|
|
|
+ register: _patched_elasticsearch_config
|
|
|
+
|
|
|
+ - copy:
|
|
|
+ content: "{{ config_source | combine(override_config, recursive=True) | to_nice_yaml(indent=2) }}"
|
|
|
+ dest: "{{ tempdir }}/elasticsearch.yml"
|
|
|
+ vars:
|
|
|
+ config_source: "{{ _patched_elasticsearch_config['content'] | b64decode | from_yaml }}"
|
|
|
+ override_config: "{{ openshift_logging_es_config | default({}) | from_yaml }}"
|
|
|
+
|
|
|
- name: Set ES configmap
|
|
|
oc_configmap:
|
|
|
state: present
|
|
@@ -271,6 +282,17 @@
|
|
|
- current_file: "log4j2.properties"
|
|
|
new_file: "{{ tempdir }}/log4j2.properties"
|
|
|
|
|
|
+ - slurp:
|
|
|
+ src: "{{ tempdir }}/elasticsearch.yml"
|
|
|
+ register: _patched_elasticsearch_config
|
|
|
+
|
|
|
+ - copy:
|
|
|
+ content: "{{ config_source | combine(override_config, recursive=True) | to_nice_yaml(indent=2) }}"
|
|
|
+ dest: "{{ tempdir }}/elasticsearch.yml"
|
|
|
+ vars:
|
|
|
+ config_source: "{{ _patched_elasticsearch_config['content'] | b64decode | from_yaml }}"
|
|
|
+ override_config: "{{ openshift_logging_es_config | default({}) | from_yaml }}"
|
|
|
+
|
|
|
- name: Set ES configmap
|
|
|
oc_configmap:
|
|
|
state: present
|