blob: aa73a73050039e0b39986dc326a0aee2fb865c64 [file] [log] [blame]
jasmineWen85d9d732018-03-06 16:13:35 +00001NAME=$(/consul/bin/kubectl -n {{ .Values.nsPrefix }} get pod | grep -o "mso-mariadb[^[:space:]]*")
2
3 if [ -n "$NAME" ]; then
4 if /consul/bin/kubectl -n {{ .Values.nsPrefix }} exec -it $NAME -- bash -c 'mysqladmin status -u root -p$MYSQL_ROOT_PASSWORD' > /dev/null; then
5 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