Merge pull request #514 from elastic/bundle_me_up
Bump version to 6.5.1 and document installing test dependencies #508
This commit is contained in:
commit
0333e1c296
4 changed files with 28 additions and 1 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -1,3 +1,17 @@
|
|||
## 6.5.1 - 2018/11/26
|
||||
|
||||
### Features
|
||||
|
||||
* 6.5.1 as default Elasticsearch version
|
||||
|
||||
### Fixes
|
||||
|
||||
* [#487](https://github.com/elastic/ansible-elasticsearch/pull/487) - @lazouz - Disable check mode to make install plugins idempotent
|
||||
* [#501](https://github.com/elastic/ansible-elasticsearch/pull/501) - @kaxil - Make the order of configs consistent for comparing
|
||||
* [#497](https://github.com/elastic/ansible-elasticsearch/pull/497) - @Crazybus - Document es_use_repository and es_custom_package_url
|
||||
* [#504](https://github.com/elastic/ansible-elasticsearch/pull/504) - @victorgs - Using tests as filters is deprecated
|
||||
* [#493](https://github.com/elastic/ansible-elasticsearch/pull/493) - @Crazybus - Only use the first found java version if there are multiple installed
|
||||
|
||||
## 6.4.0 - 2018/08/24
|
||||
|
||||
### Features
|
||||
|
|
|
|||
|
|
@ -54,6 +54,12 @@ This playbook uses [Kitchen](https://kitchen.ci/) for CI and local testing.
|
|||
|
||||
### Running the tests
|
||||
|
||||
Install the ruby dependencies with bundler
|
||||
|
||||
```sh
|
||||
make setup
|
||||
```
|
||||
|
||||
If you want to test X-Pack features with a license you will first need to export the `ES_XPACK_LICENSE_FILE` variable.
|
||||
```sh
|
||||
export ES_XPACK_LICENSE_FILE="$(pwd)/license.json"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
es_major_version: "6.x"
|
||||
es_version: "6.4.0"
|
||||
es_version: "6.5.1"
|
||||
es_use_snapshot_release: false
|
||||
es_enable_xpack: true
|
||||
es_package_name: "elasticsearch"
|
||||
|
|
|
|||
|
|
@ -2,6 +2,13 @@
|
|||
- name: set fact manage_file_users
|
||||
set_fact: manage_file_users=es_users is defined and es_users.file is defined and es_users.file.keys() | length > 0
|
||||
|
||||
- name: Copy the old users file from the old depreacted location
|
||||
copy:
|
||||
remote_src: yes
|
||||
force: no # only copy it if the new path doesn't exist yet
|
||||
src: "{{ conf_dir }}/x-pack/users"
|
||||
dest: "{{ conf_dir }}{{ es_xpack_conf_subdir }}/users"
|
||||
|
||||
- name: Create the users file if it doesn't exist
|
||||
copy:
|
||||
content: ""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue