platform/tests/install-elastic-plugin.sh
Andrey Sobolev 6fcbd14d6f
Separate tracker deployment (#1245)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2022-04-01 12:57:22 +07:00

7 lines
382 B
Bash
Executable File

#!/bin/bash
# Direct donwload, or use VPN.
#wget https://artifacts.elastic.co/downloads/elasticsearch-plugins/ingest-attachment/ingest-attachment-7.14.2.zip
docker cp ./ingest-attachment-7.14.2.zip sanity-elastic-1:/ingest-attachment-7.14.2.zip
docker exec -ti sanity-elastic-1 ./bin/elasticsearch-plugin install file:///ingest-attachment-7.14.2.zip
docker restart sanity-elastic-1