Tests moved to 5.x

This commit is contained in:
Dale McDiarmid 2017-01-06 11:34:19 +00:00
parent 06d156fd57
commit dffb17e59a
7 changed files with 16 additions and 16 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 2.4.3 is installed. The following illustrates applying configuration parameters to an Elasticsearch instance. By default, Elasticsearch 5.1.1 is installed.
``` ```
- name: Elasticsearch with custom configuration - name: Elasticsearch with custom configuration
@ -211,7 +211,7 @@ ansible-playbook -i hosts ./your-playbook.yml
### Installing X-Pack Features ### Installing X-Pack Features
X-Pack features, such as Shield, are supported for Elasticsearch 2.4 only. This feature is currently experimental. To enable X-Pack set the parameter `es_enable_xpack` to true and list the required features in the parameter `es_xpack_features`. The following additional parameters allow X-Pack to be configured: X-Pack features, such as Security, are supported. This feature is currently experimental. To enable X-Pack set the parameter `es_enable_xpack` to true and list the required features in the parameter `es_xpack_features`. The following additional parameters allow X-Pack to be configured:
* ```es_message_auth_file``` System Key field to allow message authentication. This file should be placed in the 'files' directory. * ```es_message_auth_file``` System Key field to allow message authentication. This file should be placed in the 'files' directory.
* ```es_role_mapping``` Role mappings file declared as yml as described [here](https://www.elastic.co/guide/en/shield/current/mapping-roles.html) * ```es_role_mapping``` Role mappings file declared as yml as described [here](https://www.elastic.co/guide/en/shield/current/mapping-roles.html)
@ -320,7 +320,7 @@ Following variables affect the versions installed:
```yml ```yml
es_plugins: es_plugins:
- plugin: elasticsearch-cloud-aws - plugin: elasticsearch-cloud-aws
version: 2.5.0 version: 5.0.0
``` ```
* ```es_allow_downgrades``` For development purposes only. (true or false (default) ) * ```es_allow_downgrades``` For development purposes only. (true or false (default) )
* ```es_java_install``` If set to false, Java will not be installed. (true (default) or false) * ```es_java_install``` If set to false, Java will not be installed. (true (default) or false)
@ -368,7 +368,7 @@ To define proxy only for a particular plugin during its installation:
``` ```
es_plugins: es_plugins:
- plugin: elasticsearch-cloud-aws - plugin: elasticsearch-cloud-aws
version: 2.5.0 version: 5.0.0
proxy_host: proxy.example.com proxy_host: proxy.example.com
proxy_port: 8080 proxy_port: 8080
``` ```

View file

@ -1,6 +1,6 @@
--- ---
es_major_version: "2.x" es_major_version: "5.x"
es_version: "2.4.3" es_version: "5.1.1"
es_version_lock: false es_version_lock: false
es_use_repository: true es_use_repository: true
es_apt_key: "https://packages.elasticsearch.org/GPG-KEY-elasticsearch" es_apt_key: "https://packages.elasticsearch.org/GPG-KEY-elasticsearch"

View file

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

View file

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

View file

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

View file

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

View file

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