From 770089cd25094cb9ea03b2881cb3b3f422525cf3 Mon Sep 17 00:00:00 2001 From: Jaime Soriano Pastor Date: Tue, 29 Jun 2021 18:02:04 +0200 Subject: [PATCH] Sync options in 7.x testing environment with master (#26467) --- testing/environments/latest.yml | 2 +- testing/environments/snapshot-oss.yml | 4 +++- testing/environments/snapshot.yml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/testing/environments/latest.yml b/testing/environments/latest.yml index 1bb24d0c449d..702b6355d7dd 100644 --- a/testing/environments/latest.yml +++ b/testing/environments/latest.yml @@ -9,7 +9,7 @@ services: retries: 300 interval: 1s environment: - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" + - "ES_JAVA_OPTS=-Xms1g -Xmx1g" - "network.host=" - "transport.host=127.0.0.1" - "http.host=0.0.0.0" diff --git a/testing/environments/snapshot-oss.yml b/testing/environments/snapshot-oss.yml index 698f4a4386f1..87d1b73af46d 100644 --- a/testing/environments/snapshot-oss.yml +++ b/testing/environments/snapshot-oss.yml @@ -9,10 +9,12 @@ services: retries: 300 interval: 1s environment: - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" + - "ES_JAVA_OPTS=-Xms1g -Xmx1g" - "network.host=" - "transport.host=127.0.0.1" - "http.host=0.0.0.0" + - "xpack.security.enabled=false" + - "indices.id_field_data.enabled=true" logstash: image: docker.elastic.co/logstash/logstash-oss:7.14.0-b3f1839d-SNAPSHOT diff --git a/testing/environments/snapshot.yml b/testing/environments/snapshot.yml index f976bacd3486..f656ecf28cff 100644 --- a/testing/environments/snapshot.yml +++ b/testing/environments/snapshot.yml @@ -9,11 +9,12 @@ services: retries: 300 interval: 1s environment: - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" + - "ES_JAVA_OPTS=-Xms1g -Xmx1g" - "network.host=" - "transport.host=127.0.0.1" - "http.host=0.0.0.0" - "xpack.security.enabled=false" + - "action.destructive_requires_name=false" # Disable geoip updates to prevent golden file test failures when the database # changes and prevent race conditions between tests and database updates. - "ingest.geoip.downloader.enabled=false"