Skip to content
This repository was archived by the owner on Jun 24, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .kitchen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 %>

Expand Down
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 6 additions & 0 deletions tasks/elasticsearch-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down