blob: 2cf7fc78c5951bc7e4e72155511dad1e46ffe9d9 [file] [log] [blame]
Priyankafa408712018-05-16 04:30:25 +00001NAME=$(/consul/bin/kubectl -n {{ include "common.namespace" . }} get pod | grep -o "[^[:space:]]*-clampdb[^[:space:]]*")
2
3 if [ -n "$NAME" ]; then
4 if /consul/bin/kubectl -n {{ include "common.namespace" . }} exec -it $NAME -- bash -c 'mysqladmin status -u root -p$MYSQL_ROOT_PASSWORD' > /dev/null; then
5 echo Success. CLAMP DBHost is running. 2>&1
6 exit 0
7 else
8 echo Failed. CLAMP DBHost is not running. 2>&1
9 exit 1
10 fi
11 else
12 echo Failed. CLAMP DBHost is offline. 2>&1
13 exit 1
14 fi
15