Support for plugin diffs + improved testing on minor upgrades + fixes
This commit is contained in:
parent
4e8af6ced5
commit
1bc817a378
17 changed files with 155 additions and 54 deletions
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
#Test explicit setting of parameters and variables
|
||||
- name: Elasticsearch Config tests
|
||||
- name: Elasticsearch Config initial
|
||||
hosts: localhost
|
||||
roles:
|
||||
#expand to all available parameters
|
||||
|
|
@ -10,4 +10,22 @@
|
|||
es_templates: false
|
||||
es_version_lock: false
|
||||
es_heap_size: 1g
|
||||
es_api_port: 9201
|
||||
es_api_port: 9201
|
||||
es_plugins:
|
||||
- plugin: docke
|
||||
|
||||
#Modify the above configuration. Final test should evaluate this configuration. Also tests the plugins are added and removed.
|
||||
- name: Elasticsearch Config test modify
|
||||
hosts: localhost
|
||||
roles:
|
||||
#expand to all available parameters
|
||||
- { role: elasticsearch, es_instance_name: "node1", es_data_dirs: ["/opt/elasticsearch/data-1","/opt/elasticsearch/data-2"], es_log_dir: "/opt/elasticsearch/logs", es_user_id: 333, es_group_id: 333, es_config: {node.name: "node1", cluster.name: "custom-cluster", discovery.zen.ping.unicast.hosts: "localhost:9501", http.port: 9401, transport.tcp.port: 9501, node.data: true, node.master: true, bootstrap.memory_lock: false } }
|
||||
vars:
|
||||
es_scripts: false
|
||||
es_templates: false
|
||||
es_version_lock: false
|
||||
es_heap_size: 1g
|
||||
es_api_port: 9401
|
||||
es_plugins:
|
||||
- plugin: ingest-attachment
|
||||
- plugin: ingest-user-agent
|
||||
Loading…
Add table
Add a link
Reference in a new issue