blob: 77966819023d29953188aa75d6908007e0355f44 [file] [log] [blame]
jasmineWen85d9d732018-03-06 16:13:35 +00001
2NAME=$(/consul/bin/kubectl -n {{ .Values.nsPrefix }} get pod | grep -o "aai-sparky-be[^[:space:]]*")
3
4if [ -n "$NAME" ]; then
5 if /consul/bin/kubectl -n {{ .Values.nsPrefix }} exec -it $NAME -- ps -efww | grep 'java' | grep 'sparky' > /dev/null; then
6
7 echo Success. UI Backend Service process is running. 2>&1
8 exit 0
9 else
10 echo Failed. UI Backend Service process is not running. 2>&1
11 exit 1
12 fi
13else
14 echo Failed. UI Backend Service container is offline. 2>&1
15 exit 1
16fi