Exposing PM and ELK stack ports
[osm/devops.git] / installers / osm_health.sh
index 8852ab3..2be8ce4 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-WAIT_TIME=30
+WAIT_TIME=60
 NUM_SERVICES_WITH_HEALTH=3
 
 while getopts "w:s:n:" o; do
@@ -28,4 +28,8 @@ while [ $time -le "$WAIT_TIME" ]; do
     sleep $step
     time=$((time+step))
 done
+
+echo "Not all Docker services are healthy"
+docker ps | grep " ${STACK_NAME}_"
+
 exit 1