Support for 7.2 (#884)

* API generation

* Add 7.2.0 to testing matrix

* Use 7.2.0-SNAPSHOT

* API generation

* Updated custom skips

* Updated ES version

* Updated esDefaultRoles
This commit is contained in:
Tomas Della Vedova
2019-07-04 11:27:14 +02:00
committed by GitHub
parent 0918df8e7d
commit b0861fae0d
35 changed files with 1107 additions and 89 deletions

View File

@ -26,6 +26,8 @@ const esDefaultRoles = [
'beats_system',
'code_admin',
'code_user',
'data_frame_transforms_admin',
'data_frame_transforms_user',
'ingest_admin',
'kibana_dashboard_only_user',
'kibana_system',

View File

@ -34,6 +34,10 @@ const esFolder = join(__dirname, '..', '..', 'elasticsearch')
const yamlFolder = join(esFolder, 'rest-api-spec', 'src', 'main', 'resources', 'rest-api-spec', 'test')
const xPackYamlFolder = join(esFolder, 'x-pack', 'plugin', 'src', 'test', 'resources', 'rest-api-spec', 'test')
const customSkips = [
// Test cat indices output for closed index (pre 7.2.0) is failing
'cat.indices/10_basic.yml',
// cluster health with closed index (pre 7.2.0) is failing
'cluster.health/10_basic.yml',
// TODO: remove this once 'arbitrary_key' is implemented
// https://github.com/elastic/elasticsearch/pull/41492
'indices.split/30_copy_settings.yml',