move to 5.1.2

This commit is contained in:
Dale McDiarmid 2017-01-13 12:18:33 +00:00
parent 2b60a217ab
commit 661ec80447
7 changed files with 9 additions and 9 deletions

View file

@ -49,7 +49,7 @@ The use of a map ensures the Ansible playbook does not need to be updated to ref
In addition to the es_config map, several other parameters are supported for additional functions e.g. script installation. These can be found in the role's defaults/main.yml file. In addition to the es_config map, several other parameters are supported for additional functions e.g. script installation. These can be found in the role's defaults/main.yml file.
The following illustrates applying configuration parameters to an Elasticsearch instance. By default, Elasticsearch 5.1.1 is installed. The following illustrates applying configuration parameters to an Elasticsearch instance. By default, Elasticsearch 5.1.2is installed.
``` ```
- name: Elasticsearch with custom configuration - name: Elasticsearch with custom configuration
@ -312,7 +312,7 @@ Additional parameters to es_config allow the customization of the Java and Elast
Following variables affect the versions installed: Following variables affect the versions installed:
* ```es_major_version``` (e.g. "5.1" ). Should be consistent with es_version. For versions >= 5.0 this must be "5.x". * ```es_major_version``` (e.g. "5.1" ). Should be consistent with es_version. For versions >= 5.0 this must be "5.x".
* ```es_version``` (e.g. "5.1.1"). * ```es_version``` (e.g. "5.1.2").
* ```es_api_host``` The host name used for actions requiring HTTP e.g. installing templates. Defaults to "localhost". * ```es_api_host``` The host name used for actions requiring HTTP e.g. installing templates. Defaults to "localhost".
* ```es_api_port``` The port used for actions requiring HTTP e.g. installing templates. Defaults to 9200. * ```es_api_port``` The port used for actions requiring HTTP e.g. installing templates. Defaults to 9200.
* ```es_api_basic_auth_username``` The Elasticsearch username for making admin changing actions. Used if Security is enabled. Ensure this user is admin. * ```es_api_basic_auth_username``` The Elasticsearch username for making admin changing actions. Used if Security is enabled. Ensure this user is admin.

View file

@ -1,11 +1,11 @@
--- ---
es_major_version: "5.x" es_major_version: "5.x"
es_version: "5.1.1" es_version: "5.1.2"
es_version_lock: false es_version_lock: false
es_use_repository: true es_use_repository: true
es_apt_key: "https://artifacts.elastic.co/GPG-KEY-elasticsearch" es_apt_key: "https://artifacts.elastic.co/GPG-KEY-elasticsearch"
es_apt_url: "deb https://artifacts.elastic.co/packages/{{ es_major_version }}/apt stable main" es_apt_url: "deb https://artifacts.elastic.co/packages/{{ es_major_version }}/apt stable main"
es_apt_url_old: "deb https://artifacts.elastic.co/packages/{{ es_major_version }}/apt stable main" es_apt_url_old: "deb http://packages.elastic.co/elasticsearch/{{ es_major_version }}/debian stable main"
es_start_service: true es_start_service: true
es_java_install: true es_java_install: true
update_java: false update_java: false

View file

@ -1,6 +1,6 @@
require 'config_spec' require 'config_spec'
describe 'Config Tests v 5.x' do describe 'Config Tests v 5.x' do
include_examples 'config::init', "5.1.1" include_examples 'config::init', "5.1.2"
end end

View file

@ -2,7 +2,7 @@ require 'multi_spec'
describe 'Multi Tests v 5.x' do describe 'Multi Tests v 5.x' do
include_examples 'multi::init', "5.1.1", ["kopf"] include_examples 'multi::init', "5.1.2", ["kopf"]
end end

View file

@ -2,5 +2,5 @@ require 'package_spec'
describe 'Package Tests v 5.x' do describe 'Package Tests v 5.x' do
include_examples 'package::init', "5.1.1", ["kopf"] include_examples 'package::init', "5.1.2", ["kopf"]
end end

View file

@ -2,7 +2,7 @@ require 'standard_spec'
describe 'Standard Tests v 5.x' do describe 'Standard Tests v 5.x' do
include_examples 'standard::init', "5.1.1" include_examples 'standard::init', "5.1.2"
end end

View file

@ -1,5 +1,5 @@
require 'xpack_spec' require 'xpack_spec'
describe 'Xpack Tests v 5.x' do describe 'Xpack Tests v 5.x' do
include_examples 'xpack::init', "5.1.1" include_examples 'xpack::init', "5.1.2"
end end