blob: 5ac5c8b8447813c904b22d57aa178228b10a022d [file] [log] [blame]
Priyanka Jain83e5bdd2018-05-09 07:15:49 +00001NAME=$(/consul/bin/kubectl -n {{ include "common.namespace" . }} get pod | grep -o "[^[:space:]]*-vid-mariadb[^[:space:]]*")
jasmineWen85d9d732018-03-06 16:13:35 +00002
3 if [ -n "$NAME" ]; then
Priyanka Jainc07e1d12018-05-03 12:52:04 +00004 if /consul/bin/kubectl -n {{ include "common.namespace" . }} exec -it $NAME -- bash -c 'mysqladmin status -u root -p$MYSQL_ROOT_PASSWORD' > /dev/null; then
jasmineWen85d9d732018-03-06 16:13:35 +00005 echo Success. mariadb process is running. 2>&1
6 exit 0
7 else
8 echo Failed. mariadb process is not running. 2>&1
9 exit 1
10 fi
11 else
12 echo Failed. mariadb container is offline. 2>&1
13 exit 1
14 fi