Skip to content

Commit b41c733

Browse files
committed
[TEST] Add some missing and required static configs
1 parent 129ed4a commit b41c733

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

travis/download_and_run_es.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ unzip "elasticsearch-latest-SNAPSHOT.zip"
2121
echo "Adding repo to config..."
2222
find . -name "elasticsearch.yml" | while read TXT ; do echo 'repositories.url.allowed_urls: ["http://*"]' >> $TXT ; done
2323
find . -name "elasticsearch.yml" | while read TXT ; do echo 'path.repo: ["/tmp"]' >> $TXT ; done
24+
find . -name "elasticsearch.yml" | while read TXT ; do echo 'node.max_local_storage_nodes: 1' >> $TXT ; done
25+
find . -name "elasticsearch.yml" | while read TXT ; do echo 'cluster.routing.allocation.disk.watermark.low: 1b' >> $TXT ; done
26+
find . -name "elasticsearch.yml" | while read TXT ; do echo 'cluster.routing.allocation.disk.watermark.high: 1b' >> $TXT ; done
27+
find . -name "elasticsearch.yml" | while read TXT ; do echo 'node.attr.testattr: test' >> $TXT ; done
28+
find . -name "elasticsearch.yml" | while read TXT ; do echo 'script.max_compilations_per_minute: 2048' >> $TXT ; done
29+
2430

2531
echo "Starting Elasticsearch v${ES_VERSION}"
2632

0 commit comments

Comments
 (0)