Update jenkins stage3 to allow setting the VM flavor for OSM installation and tests
[osm/devops.git] / installers / osm_health.sh
index 5ee3d78..077290b 100755 (executable)
@@ -17,7 +17,7 @@
 # Default values
 sampling_period=5       # seconds
 time_for_readiness=2    # minutes ready
-time_for_failure=5      # minutes broken
+time_for_failure=7      # minutes broken
 KUBERNETES=             # By default, assumes Docker Swarm installation
 STACK_NAME=osm          # By default, "osm"
 
@@ -47,6 +47,12 @@ failures_in_a_row=0
 oks_in_a_row=0
 
 
+# Show status of the OSM services deployed with helm
+echo "helm -n ${STACK_NAME} list"
+helm -n ${STACK_NAME} list
+echo "helm -n ${STACK_NAME} status ${STACK_NAME}"
+helm -n ${STACK_NAME} status ${STACK_NAME}
+
 ####################################################################################
 # Loop to check system readiness
 ####################################################################################