aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/consul/resources/config/consul-agent-config/scripts/data-router-script.sh
blob: c85efc3c17bd37aded017d74f2222b7488f8bc1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
NAME=$(/consul/bin/kubectl -n {{ include "common.namespace" . }} get pod | grep -o "aai-data-router[^[:space:]]*")

if [ -n "$NAME" ]; then
   if /consul/bin/kubectl -n {{ include "common.namespace" . }} exec -it $NAME -- ps -efww | grep 'java' | grep 'data-router' > /dev/null; then

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