aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/templates/default/ready-probe.sh.erb
blob: b5cbb149ddfbbe512bb428cead1bedb770d18e86 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

health_Check_http_code=$(curl --max-time 5 -o /dev/null -w '%{http_code}' http://localhost:8181/sdc1/rest/healthCheck)
if [[ "$health_Check_http_code" -eq 500 ]]; then
   exit 200
else
   exit $health_Check_http_code
fi