2023-06-26 14:19:59 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
IP=$(ip a | grep "inet " | grep -Fv 127.0.0.1 | sed 's/.*inet \([^/]*\).*/\1/')
|
|
|
|
|
|
|
|
echo "I am a gowaku node"
|
|
|
|
|
|
|
|
RETRIES=${RETRIES:=10}
|
|
|
|
|
|
|
|
while [ -z "${BOOTSTRAP_ENR}" ] && [ ${RETRIES} -ge 0 ]; do
|
2024-03-12 11:02:04 +00:00
|
|
|
BOOTSTRAP_ENR=$(wget -qO- http://bootstrap:8645/debug/v1/info --header='Content-Type:application/json' 2> /dev/null | sed 's/.*"enrUri":"\([^"]*\)".*/\1/');
|
2023-06-26 14:19:59 +00:00
|
|
|
echo "Bootstrap node not ready, retrying (retries left: ${RETRIES})"
|
|
|
|
sleep 1
|
|
|
|
RETRIES=$(( $RETRIES - 1 ))
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ -z "${BOOTSTRAP_ENR}" ]; then
|
|
|
|
echo "Could not get BOOTSTRAP_ENR and none provided. Failing"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Using bootstrap node: ${BOOTSTRAP_ENR}"
|
|
|
|
exec /usr/bin/waku\
|
|
|
|
--discv5-discovery\
|
|
|
|
--discv5-bootstrap-node=${BOOTSTRAP_ENR}\
|
|
|
|
--metrics-server=True\
|
|
|
|
--metrics-server-address=0.0.0.0
|
|
|
|
|
|
|
|
|