aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/templates/default/ready-probe.sh.erb
blob: f721f9a694af70e01fa99c507b5ec941a351a7bf (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://127.0.0.1:8181/sdc1/rest/healthCheck)
if [[ "$health_Check_http_code" -eq 200 ]]; then
   exit 200
else
   exit $health_Check_http_code
fi