blob: a80a7903772a5e5583efb54a90f465370f439ff5 [file] [log] [blame]
NAME=$(/consul/bin/kubectl -n {{ include "common.namespace" . }} get pod | grep -o "so-db[^[:space:]]*")
if [ -n "$NAME" ]; then
if /consul/bin/kubectl -n {{ include "common.namespace" . }} exec -it $NAME -- bash -c 'mysqladmin status -u root -p$MYSQL_ROOT_PASSWORD' > /dev/null; then
echo Success. mariadb process is running. 2>&1
exit 0
else
echo Failed. mariadb process is not running. 2>&1
exit 1
fi
else
echo Failed. mariadb container is offline. 2>&1
exit 1
fi