summaryrefslogtreecommitdiffstats
path: root/kubernetes/consul/resources/config/consul-agent-config/scripts/sdnc-dbhost-script.sh
blob: 27b9b9f608379b02233529d6b85c40705367fa09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
SDNC_DBHOST_POD=$(/consul/bin/kubectl -n {{ .Values.nsPrefix }}  get pod | grep -o "sdnc-dbhost-[^[:space:]]*")
if [ -n "$SDNC_DBHOST_POD" ]; then
   if /consul/bin/kubectl -n {{ .Values.nsPrefix }} exec -it $SDNC_DBHOST_POD -- ./healthcheck.sh |grep -i "mysqld is alive"; then
      echo Success. SDNC DBHost is running. 2>&1
      exit 0
   else
      echo Failed. SDNC DBHost is not running. 2>&1
      exit 1
   fi
else
   echo Failed. SDNC DBHost is offline. 2>&1
   exit 1
fi