Dan K
2019-08-04 ac6169db7b90e950156a87d9784308429ce3bee2
nexus3/probes/liveness.sh
New file
@@ -0,0 +1,13 @@
#!/bin/sh
curl -siu admin:admin123 http://localhost:8081/service/metrics/healthcheck | grep healthy | grep true
RESPONSE=$?
if [ "$RESPONSE" = "0" ] ; then
  echo "******** liveness is Alive ********"
  exit 0;
else
  echo "******** liveness is Dead ********"
  exit 1;
fi