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

Commit 7bea2de

Browse files
authored
Merge pull request #414 from elastic/v6_as_the_default
Make 6.x the default version
2 parents 9d9b87e + fbfc85e commit 7bea2de

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.kitchen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ provisioner:
2020
attributes:
2121
extra_vars:
2222
es_major_version: "<%= ENV['VERSION'] %>"
23-
<% if ENV['VERSION'] == '6.x' %>
24-
es_version: '6.1.2'
23+
<% if ENV['VERSION'] == '5.x' %>
24+
es_version: '5.6.7'
2525
<% end %>
2626
<% end %>
2727

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
**THIS ROLE IS FOR 6.x, 5.x. FOR 2.x SUPPORT PLEASE USE THE 2.x BRANCH.**
55

6-
Ansible role for 5.x Elasticsearch. Currently this works on Debian and RedHat based linux systems. Tested platforms are:
6+
Ansible role for 6.x/5.x Elasticsearch. Currently this works on Debian and RedHat based linux systems. Tested platforms are:
77

88
* Ubuntu 14.04/16.04
99
* Debian 8
@@ -330,7 +330,7 @@ These can either be set to a user declared in the file based realm, with admin p
330330
In addition to es_config, the following parameters allow the customization of the Java and Elasticsearch versions as well as the role behaviour. Options include:
331331

332332
* ```es_major_version``` Should be consistent with es_version. For versions >= 5.0 and < 6.0 this must be "5.x". For versions >= 6.0 this must be "6.x".
333-
* ```es_version``` (e.g. "5.1.2").
333+
* ```es_version``` (e.g. "6.1.2").
334334
* ```es_api_host``` The host name used for actions requiring HTTP e.g. installing templates. Defaults to "localhost".
335335
* ```es_api_port``` The port used for actions requiring HTTP e.g. installing templates. Defaults to 9200. **CHANGE IF THE HTTP PORT IS NOT 9200**
336336
* ```es_api_basic_auth_username``` The Elasticsearch username for making admin changing actions. Used if Security is enabled. Ensure this user is admin.

defaults/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
es_major_version: "5.x"
3-
es_version: "5.5.1"
2+
es_major_version: "6.x"
3+
es_version: "6.1.3"
44
es_version_lock: false
55
es_use_repository: true
66
es_templates_fileglob: "files/templates/*.json"

0 commit comments

Comments
 (0)