* [meta] refactor kitchen tests This commit update kitchen tests to match important feature to test: - default: test a deployment with all default values - license: test a deployment with a license and default values - trial: test a deployment with security enabled and trial license - oss: test a deployment with oss version and default values (6.x only) - upgrade: test an upgrade from a previous version - oss-upgrade: test an upgrade with oss version (6.x only) - oss-to-default-upgrade: test an upgrade from previous oss to latest default version - custom_config: test a deployment with custom config files - security: test a deployment with security enabled * [meta] fix license test
11 lines
408 B
YAML
11 lines
408 B
YAML
---
|
|
- name: Setup Elasticsearch with custom config files
|
|
hosts: localhost
|
|
post_tasks:
|
|
- include: elasticsearch/test/integration/debug.yml
|
|
roles:
|
|
- elasticsearch
|
|
vars:
|
|
es_config_default: "test/integration/files/custom_config/elasticsearch"
|
|
es_config_log4j2: "test/integration/files/custom_config/log4j2.properties"
|
|
es_config_jvm: "test/integration/files/custom_config/jvm.options"
|