2019-06-18 03:10:05 -04:00
|
|
|
apply plugin: 'elasticsearch.testclusters'
|
2017-02-08 11:58:55 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2019-11-14 06:01:23 -05:00
|
|
|
testCompile project(":x-pack:plugin:core")
|
|
|
|
testCompile project(path: xpackModule('ml'), configuration: 'runtime')
|
2017-02-08 11:58:55 -05:00
|
|
|
}
|
|
|
|
|
2019-06-18 03:10:05 -04:00
|
|
|
testClusters.integTest {
|
2019-11-14 06:01:23 -05:00
|
|
|
testDistribution = 'DEFAULT'
|
|
|
|
numberOfNodes = 3
|
|
|
|
setting 'xpack.security.enabled', 'false'
|
2020-04-20 10:37:19 -04:00
|
|
|
setting 'xpack.monitoring.elasticsearch.collection.enabled', 'false'
|
2019-11-14 06:01:23 -05:00
|
|
|
setting 'xpack.watcher.enabled', 'false'
|
|
|
|
setting 'xpack.ml.enabled', 'true'
|
|
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
2020-04-20 15:41:30 -04:00
|
|
|
setting 'indices.lifecycle.history_index_enabled', 'false'
|
|
|
|
setting 'slm.history_index_enabled', 'false'
|
2017-02-08 11:58:55 -05:00
|
|
|
}
|