Merge branch '4.14.4' into bug/1918-Fix_mismatched_closing_tags
This commit is contained in:
commit
33003d7ac6
@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file.
|
||||
### Changed
|
||||
|
||||
- Fix mismatched tags in .j2 template files ([#1930](https://github.com/wazuh/wazuh-ansible/pull/1930))
|
||||
- Address Misconfiguration of indexer_cluster_nodes Parameter ([#1929](https://github.com/wazuh/wazuh-ansible/pull/1929))
|
||||
- Remove meta yamls that prevent indexer and agent role installation from PR #1806 ([#1921](https://github.com/wazuh/wazuh-ansible/pull/1921))
|
||||
- Ensure boolean condition evaluations - from community PR #1897 ([#1916](https://github.com/wazuh/wazuh-ansible/pull/1916))
|
||||
|
||||
|
||||
@ -5,9 +5,9 @@
|
||||
- role: ../roles/wazuh/wazuh-indexer
|
||||
indexer_network_host: "{{ private_ip }}"
|
||||
indexer_cluster_nodes:
|
||||
- "{{ hostvars.wi1.private_ip }}"
|
||||
- "{{ hostvars.wi2.private_ip }}"
|
||||
- "{{ hostvars.wi3.private_ip }}"
|
||||
- "{{ hostvars.wi1.indexer_node_name }}"
|
||||
- "{{ hostvars.wi2.indexer_node_name }}"
|
||||
- "{{ hostvars.wi3.indexer_node_name }}"
|
||||
indexer_discovery_nodes:
|
||||
- "{{ hostvars.wi1.private_ip }}"
|
||||
- "{{ hostvars.wi2.private_ip }}"
|
||||
@ -56,9 +56,9 @@
|
||||
become_user: root
|
||||
vars:
|
||||
indexer_cluster_nodes:
|
||||
- "{{ hostvars.wi1.private_ip }}"
|
||||
- "{{ hostvars.wi2.private_ip }}"
|
||||
- "{{ hostvars.wi3.private_ip }}"
|
||||
- "{{ hostvars.wi1.indexer_node_name }}"
|
||||
- "{{ hostvars.wi2.indexer_node_name }}"
|
||||
- "{{ hostvars.wi3.indexer_node_name }}"
|
||||
indexer_discovery_nodes:
|
||||
- "{{ hostvars.wi1.private_ip }}"
|
||||
- "{{ hostvars.wi2.private_ip }}"
|
||||
|
||||
@ -13,7 +13,7 @@ indexer_node_ingest: true
|
||||
indexer_start_timeout: 90
|
||||
|
||||
indexer_cluster_nodes:
|
||||
- 127.0.0.1
|
||||
- "{{ indexer_node_name }}"
|
||||
indexer_discovery_nodes:
|
||||
- 127.0.0.1
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user