blob: c5955f3be3eb30126229c6d35459ad199fc5d29c [file] [log] [blame]
gfrabonid0769512017-09-22 15:31:48 -04001## Query the health check API.
jasmineWen85d9d732018-03-06 16:13:35 +00002HEALTH_CHECK_ENDPOINT="http://sdc-fe.{{ .Values.nsPrefix }}:8181/sdc1/rest/healthCheck"
gfrabonid0769512017-09-22 15:31:48 -04003HEALTH_CHECK_RESPONSE=$(curl -s $HEALTH_CHECK_ENDPOINT)
4
5## Strip out the ON_BOARDING section from the response XML (otherwise we will
6## get duplicate results when we search for component TITAN) and check to see if
7## the TITAN component is reported as up.
8READY=$(echo "$HEALTH_CHECK_RESPONSE" | sed '/ON_BOARDING/,/]/d' | grep -A 1 "TITAN" | grep "UP")
9
10if [ -n $READY ]; then
11 echo "Query against health check endpoint: $HEALTH_CHECK_ENDPOINT"
12 echo "Produces response: $HEALTH_CHECK_RESPONSE"
13 echo "Application is not in an available state"
14 return 2
15else
16 echo "Application is available."
17 return 0
18fi