aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/templates/default/ready-probe.sh.erb
blob: bad5f878dd37074a1c6cbbb6f9195cc908ab5d79 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
health_Check_http_code=$(curl -k --max-time 5 -o /dev/null -w '%{http_code}' <%= @protocol %>://127.0.0.1:<%= @port %>/sdc1/rest/healthCheck)

if [[ "$health_Check_http_code" -eq 200 ]]; then
   exit 0
else
   exit $health_Check_http_code
fi