Merge pull request #488 from elastic/6.4

Upgrade default Elasticsearch version to 6.4.0
This commit is contained in:
Michael Russell 2018-08-28 11:16:52 +02:00 committed by GitHub
commit c219e6a907
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 4 deletions

View file

@ -21,7 +21,7 @@ provisioner:
extra_vars:
es_major_version: "<%= ENV['VERSION'] %>"
<% if ENV['VERSION'] == '5.x' %>
es_version: '5.6.10'
es_version: '5.6.11'
<% end %>
<% end %>

View file

@ -1,9 +1,20 @@
## 6.4.0 - 2018/08/24
### Features
* 6.4.0 as default Elasticsearch version
### Fixes
* [#484](https://github.com/elastic/ansible-elasticsearch/pull/484) - @kimoto - Fix downgrading Elasticsearch on RedHat hosts
* [#476](https://github.com/elastic/ansible-elasticsearch/pull/476) - @Crazybus - Fix version locking for the elasticsearch-oss package
## 6.3.1 - 2018/07/05
## Features
### Features
* 6.3.1 as default elasticsearch version
* 6.3.1 as default Elasticsearch version
## 6.3.0.1 - 2018/06/28

View file

@ -1,6 +1,6 @@
---
es_major_version: "6.x"
es_version: "6.3.1"
es_version: "6.4.0"
es_use_snapshot_release: false
es_enable_xpack: true
es_package_name: "elasticsearch"

View file

@ -13,6 +13,12 @@
set_fact: list_command="| grep -vE 'x-pack'"
when: not es_plugins_reinstall
- name: remove x-pack plugin directory when it isn't a plugin
file:
dest: "{{ es_home }}/plugins/x-pack"
state: "absent"
when: es_open_xpack
#List currently installed plugins. We have to list the directories as the list commmand fails if the ES version is different than the plugin version.
- name: Check installed elasticsearch plugins
become: yes