aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/config/docker/init/src/config/consul/consul-agent-config/scripts/sparky-be-script.sh
blob: d7def2dd904e4f5890e07e4effd9734bcb03f4c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
NAME=$(/consul/config/bin/kubectl -n namespace-placeholder get pod | grep -o "sparky-be[^[:space:]]*")

if [ -n "$NAME" ]; then
   if /consul/config/bin/kubectl -n namespace-placeholder exec -it $NAME -- ps -efww | grep 'java' | grep 'sparky' > /dev/null; then

      echo Success. UI Backend Service process is running. 2>&1
      exit 0
   else
      echo Failed. UI Backend Service process is not running. 2>&1
      exit 1
   fi
else
   echo Failed. UI Backend Service container is offline. 2>&1
   exit 1
fi