* Update code generation (#969) * Updated code generation scripts to use the new spec * API generation * Fix bad link * Updated API reference doc (#945) * Updated API reference doc * Updated docs script * Fix issue; node roles are defaulting to true when undefined (fal… (#967) * Fix issue; nodeFilter was unable to filter because master, data, and ingest role were true if even they were false on the node. * Test nodesToHost of BaseConnectionPool correctly maps node roles * API generation * Docker: use 7.4-SNAPSHOT * API generation * Use 7.4 stable
39 lines
1.1 KiB
Bash
Executable File
39 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Images are cached locally, it may be needed
|
|
# to delete an old image and download again
|
|
# the latest snapshot.
|
|
|
|
# pass `--clean` to reemove the old snapshot
|
|
if [ "$1" == "--clean" ]; then
|
|
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep '8.0.0-SNAPSHOT')
|
|
fi
|
|
|
|
# Create the 'elastic' network if doesn't exist
|
|
exec docker network ls | grep elastic > /dev/null || docker network create elastic > /dev/null
|
|
|
|
if [ "$1" == "--detach" ]; then
|
|
exec docker run \
|
|
--rm \
|
|
-e "node.attr.testattr=test" \
|
|
-e "path.repo=/tmp" \
|
|
-e "repositories.url.allowed_urls=http://snapshot.*" \
|
|
-e "discovery.type=single-node" \
|
|
-p 9200:9200 \
|
|
--detach \
|
|
--network=elastic \
|
|
--name=elasticsearch \
|
|
docker.elastic.co/elasticsearch/elasticsearch:7.4.0
|
|
else
|
|
exec docker run \
|
|
--rm \
|
|
-e "node.attr.testattr=test" \
|
|
-e "path.repo=/tmp" \
|
|
-e "repositories.url.allowed_urls=http://snapshot.*" \
|
|
-e "discovery.type=single-node" \
|
|
-p 9200:9200 \
|
|
--network=elastic \
|
|
--name=elasticsearch \
|
|
docker.elastic.co/elasticsearch/elasticsearch:7.4.0
|
|
fi
|