Support for configuration per node and multiple nodes per server
This commit is contained in:
parent
0c6f326bed
commit
d19297adda
30 changed files with 818 additions and 88 deletions
8
test/integration/multi.yml
Normal file
8
test/integration/multi.yml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
#Test ability to deploy multiple instances to a machine
|
||||
- name: Elasticsearch Config tests
|
||||
hosts: localhost
|
||||
roles:
|
||||
- { role: elasticsearch, es_node_name_prefix: "node1_", es_unicast_hosts: "localhost:9300", es_http_port: "9201", es_transport_tcp_port: "9301", es_data_node: true, es_master_node: false, es_m_lock_enabled: true, es_multicast_enabled: false }
|
||||
- { role: elasticsearch, es_node_name_prefix: "master_", es_unicast_hosts: "localhost:9300", es_http_port: "9200", es_transport_tcp_port: "9300", es_data_node: false, es_master_node: true, es_m_lock_enabled: true, es_multicast_enabled: false }
|
||||
vars:
|
||||
Loading…
Add table
Add a link
Reference in a new issue