Explicitly set xpack.security.enabled: True

Only run test for checking if X-Pack is a plugin for 6.3 because it is
now installed into core
This commit is contained in:
Michael Russell 2018-06-14 15:48:18 +02:00
parent 06a8c5c41b
commit d8cf1d1f66
No known key found for this signature in database
GPG key ID: A90C1696496085FE
3 changed files with 56 additions and 31 deletions

View file

@ -106,9 +106,18 @@
tasks:
- include: elasticsearch/test/integration/debug.yml
roles:
- { role: elasticsearch, es_api_port: 9200, es_config: { "http.port": 9200, "transport.tcp.port":9300, discovery.zen.ping.unicast.hosts: "localhost:9300",
"xpack.security.authc.realms.file1.type": "file","xpack.security.authc.realms.file1.order": 0, "xpack.security.authc.realms.native1.type": "native","xpack.security.authc.realms.native1.order": 1 },
es_instance_name: "security_node" }
- role: elasticsearch
es_api_port: 9200
es_instance_name: "security_node"
es_config:
http.port: 9200
transport.tcp.port: 9300
discovery.zen.ping.unicast.hosts: "localhost:9300"
xpack.security.enabled: True
xpack.security.authc.realms.file1.type: "file"
xpack.security.authc.realms.file1.order: 0
xpack.security.authc.realms.native1.type: "native"
xpack.security.authc.realms.native1.order: 1
vars:
es_heap_size: "1g"
es_templates: true