-
Notifications
You must be signed in to change notification settings - Fork 0
/
consul-leave-dday.sh
executable file
·50 lines (43 loc) · 1.45 KB
/
consul-leave-dday.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env sh
# -----------------------------------------------------------------------------
# CONSUL FORCE LEAVE - CRON DDAY (@ 30 Minutes)
# -----------------------------------------------------------------------------
# Author : Dwi Fahni Denni (@zeroc0d3)
# License : Apache version 2.0
# -----------------------------------------------------------------------------
export CONSUL_SERVER="http://DNS-OR-IP-CONSUL-SERVER:8500"
export PATH_LOG="/var/log/consul-force-leave"
export PATH_DIR="daily"
export PATH_LOG_CONSUL=$PATH_LOG"/"$PATH_DIR
export SNAPSHOT_LOG=$(date +%Y-%m-%d)"-30m"
export LOG_FILE=$PATH_LOG_CONSUL"/"$SNAPSHOT_LOG.log
run_check_members(){
echo "Get All failed node from consul members"
export MEMBERS=`consul members -http-addr=$CONSUL_SERVER | grep failed`
}
run_force_leaving(){
echo $MEMBERS
if [ ! -z "$MEMBERS" ]
then
echo "Force Leave All Failed Node..."
echo "-------------------------------"
consul members -http-addr=$CONSUL_SERVER | grep failed | awk '{ print $1 }' | xargs -L 1 consul force-leave -http-addr=$CONSUL_SERVER
echo "-------------------------------"
echo "Force Leave Done!"
run_create_log
fi
}
run_create_log(){
mkdir -p $PATH_LOG_CONSUL
echo "List of failed node \
------------------------------------ \
$MEMBERS \
------------------------------------ \
Execute at $SNAPSHOT_LOG" > $LOG_FILE
}
main() {
run_check_members
run_force_leaving
}
### START HERE ###
main $@