feat: add initial Nexus3 files

This commit is contained in:
Dan K
2019-08-04 08:26:17 -04:00
parent 64e5c44acd
commit ac6169db7b
7 changed files with 277 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/sh
curl -siu admin:admin123 http://localhost:8081/service/metrics/ping | grep pong
RESPONSE=$?
if [ "$RESPONSE" = "0" ] ; then
echo "******** readiness is Alive ********"
exit 0;
else
echo "******** readiness is Dead ********"
exit 1;
fi