ansible-role-elasticsearch/test/integration/multi.yml

12 lines
823 B
YAML
Raw Normal View History

---
#Test ability to deploy multiple instances to a machine
- name: Elasticsearch Multi tests
hosts: localhost
roles:
2017-01-17 12:00:49 +00:00
- { role: elasticsearch, es_instance_name: "master", es_data_dirs: ["/opt/elasticsearch/master"], es_config: { discovery.zen.ping.unicast.hosts: "localhost:9300", http.port: 9200, transport.tcp.port: 9300, node.data: false, node.master: true, bootstrap.memory_lock: true } }
2017-01-16 11:18:45 +00:00
- { role: elasticsearch, es_instance_name: "node1", es_data_dirs: "/opt/elasticsearch/data-1,/opt/elasticsearch/data-2", es_config: { discovery.zen.ping.unicast.hosts: "localhost:9300", http.port: 9201, transport.tcp.port: 9301, node.data: true, node.master: false } }
vars:
es_scripts: true
2015-12-14 19:34:09 +00:00
es_templates: true
2017-01-17 12:00:49 +00:00
es_heap_size: "1g"
2015-12-14 19:34:09 +00:00
#Plugins installed for this test are specified in .kitchen.yml under suite