X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=installers%2Fosm_health.sh;h=077290bee5c15197308208ed124a2400f61009ef;hb=37d5a5f1213b462f065ef44229681c801ca7efe9;hp=5ee3d78d9acc1d0cccdd4dd9b7c8c1cee71fddce;hpb=917ce8ceb9cfb54d4eb34ebbf2cf144b72881f26;p=osm%2Fdevops.git diff --git a/installers/osm_health.sh b/installers/osm_health.sh index 5ee3d78d..077290be 100755 --- a/installers/osm_health.sh +++ b/installers/osm_health.sh @@ -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 ####################################################################################