2020-11-20 20:50:43 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-02-17 19:30:31 +01:00
|
|
|
set -ex
|
|
|
|
|
2020-11-20 20:50:43 +01:00
|
|
|
SCRIPT_FOLDER="`dirname \"$0\"`"
|
|
|
|
REPO_FOLDER="${SCRIPT_FOLDER}/../"
|
|
|
|
GARAGE_DEBUG="${REPO_FOLDER}/target/debug/"
|
|
|
|
GARAGE_RELEASE="${REPO_FOLDER}/target/release/"
|
2021-10-04 18:27:57 +02:00
|
|
|
NIX_RELEASE="${REPO_FOLDER}/result/bin/"
|
|
|
|
PATH="${GARAGE_DEBUG}:${GARAGE_RELEASE}:${NIX_RELEASE}:$PATH"
|
2020-11-20 20:50:43 +01:00
|
|
|
|
2021-02-17 19:30:31 +01:00
|
|
|
sleep 5
|
2021-10-04 18:27:57 +02:00
|
|
|
RETRY=120
|
2021-10-19 16:16:10 +02:00
|
|
|
until garage -c /tmp/config.1.toml status 2>&1|grep -q HEALTHY ; do
|
2021-10-04 18:27:57 +02:00
|
|
|
(( RETRY-- ))
|
|
|
|
if (( RETRY <= 0 )); then
|
|
|
|
echo "garage did not start in time, failing."
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-11-29 17:03:08 +01:00
|
|
|
echo "cluster starting..."
|
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
|
2021-10-19 16:16:10 +02:00
|
|
|
garage -c /tmp/config.1.toml status \
|
|
|
|
| grep 'NO ROLE' \
|
2020-11-20 20:50:43 +01:00
|
|
|
| grep -Po '^[0-9a-f]+' \
|
|
|
|
| while read id; do
|
2021-10-19 16:16:10 +02:00
|
|
|
garage -c /tmp/config.1.toml node configure -z dc1 -c 1 $id
|
2020-11-20 20:50:43 +01:00
|
|
|
done
|
|
|
|
|