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

if [[ "$health_check_http_code" -eq 200 ]]; then
  exit 0
else
  echo "Health check http status: $health_check_http_code"
  exit 1
fi