Skip to content
This repository was archived by the owner on Jun 24, 2022. It is now read-only.

Commit c219e6a

Browse files
authored
Merge pull request #488 from elastic/6.4
Upgrade default Elasticsearch version to 6.4.0
2 parents 56ebb5a + 7857f24 commit c219e6a

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

.kitchen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ provisioner:
2121
extra_vars:
2222
es_major_version: "<%= ENV['VERSION'] %>"
2323
<% if ENV['VERSION'] == '5.x' %>
24-
es_version: '5.6.10'
24+
es_version: '5.6.11'
2525
<% end %>
2626
<% end %>
2727

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
1+
## 6.4.0 - 2018/08/24
2+
3+
### Features
4+
5+
* 6.4.0 as default Elasticsearch version
6+
7+
### Fixes
8+
9+
* [#484](https://github.com/elastic/ansible-elasticsearch/pull/484) - @kimoto - Fix downgrading Elasticsearch on RedHat hosts
10+
* [#476](https://github.com/elastic/ansible-elasticsearch/pull/476) - @Crazybus - Fix version locking for the elasticsearch-oss package
11+
112

213
## 6.3.1 - 2018/07/05
314

4-
## Features
15+
### Features
516

6-
* 6.3.1 as default elasticsearch version
17+
* 6.3.1 as default Elasticsearch version
718

819
## 6.3.0.1 - 2018/06/28
920

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
es_major_version: "6.x"
3-
es_version: "6.3.1"
3+
es_version: "6.4.0"
44
es_use_snapshot_release: false
55
es_enable_xpack: true
66
es_package_name: "elasticsearch"

tasks/elasticsearch-plugins.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@
1313
set_fact: list_command="| grep -vE 'x-pack'"
1414
when: not es_plugins_reinstall
1515

16+
- name: remove x-pack plugin directory when it isn't a plugin
17+
file:
18+
dest: "{{ es_home }}/plugins/x-pack"
19+
state: "absent"
20+
when: es_open_xpack
21+
1622
#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.
1723
- name: Check installed elasticsearch plugins
1824
become: yes

0 commit comments

Comments
 (0)