This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2020-09-04 12:55:30 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e # exit on first error
|
|
|
|
|
|
|
|
countdown() {
|
|
|
|
local secs=$1
|
|
|
|
while [ $secs -gt 0 ]; do
|
|
|
|
echo -ne "Waiting $secs\033[0K\r"
|
|
|
|
sleep 1
|
|
|
|
: $((secs--))
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2020-09-14 15:40:18 +00:00
|
|
|
# stop healh-check so the server is taken our of load balancer
|
|
|
|
docker exec health-check cli/disable
|
2020-09-04 12:55:30 +00:00
|
|
|
|
|
|
|
# then wait 5 minutes for the load balancer to propagate the dns records
|
|
|
|
countdown 300
|