2015-07-16 15:56:09 +02:00
|
|
|
---
|
2017-03-17 11:46:07 -06:00
|
|
|
- name: Elasticsearch Package test intial
|
2015-07-16 15:56:09 +02:00
|
|
|
hosts: localhost
|
|
|
|
|
roles:
|
2017-01-17 15:33:51 +00:00
|
|
|
- { role: elasticsearch, es_config: { "http.port": 9200, "transport.tcp.port":9300, discovery.zen.ping.unicast.hosts: "localhost:9300" }, es_instance_name: "node1" }
|
2015-11-25 17:13:45 +00:00
|
|
|
vars:
|
2015-11-26 10:20:58 +00:00
|
|
|
es_scripts: true
|
2015-12-13 22:46:50 +00:00
|
|
|
es_templates: true
|
2017-01-17 12:00:49 +00:00
|
|
|
es_heap_size: "1g"
|
2017-01-17 15:33:51 +00:00
|
|
|
es_api_port: 9200
|
2017-03-16 21:06:17 +00:00
|
|
|
es_version: "5.1.2"
|
|
|
|
|
es_plugins:
|
|
|
|
|
- plugin: ingest-geoip
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#Tests the plugins have been correctly removed and ES can be upgraded between minor versions. All plugins will be removed and re-installed.
|
|
|
|
|
- name: Elasticsearch Package test modify
|
|
|
|
|
hosts: localhost
|
|
|
|
|
roles:
|
|
|
|
|
- { role: elasticsearch, es_config: { "http.port": 9200, "transport.tcp.port":9300, discovery.zen.ping.unicast.hosts: "localhost:9300" }, es_instance_name: "node1" }
|
|
|
|
|
vars:
|
|
|
|
|
es_scripts: true
|
|
|
|
|
es_templates: true
|
|
|
|
|
es_version: "5.2.2"
|
|
|
|
|
es_heap_size: "1g"
|
|
|
|
|
es_api_port: 9200
|
|
|
|
|
es_plugins:
|
|
|
|
|
- plugin: ingest-attachment
|
2017-03-17 11:46:07 -06:00
|
|
|
- plugin: ingest-geoip
|