garage/script/dev-configure.sh

31 lines
703 B
Bash
Raw Normal View History

2020-11-20 20:50:43 +01:00
#!/bin/bash
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
sleep 5
2021-10-04 18:27:57 +02:00
RETRY=120
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
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
garage -c /tmp/config.1.toml node configure -z dc1 -c 1 $id
2020-11-20 20:50:43 +01:00
done