X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=installers%2Fosm_health.sh;h=aed8e7ab3771c54a0e18f35b316146ccf00e3c38;hb=8339ed24e9270f4cd7aa34bb632505d8d72f6c4a;hp=2be8ce4f56b101adaf57931e9cc236a60b75aaf7;hpb=7abb18b1a22f35bf13725dde05130e3a567419ac;p=osm%2Fdevops.git diff --git a/installers/osm_health.sh b/installers/osm_health.sh index 2be8ce4f..aed8e7ab 100755 --- a/installers/osm_health.sh +++ b/installers/osm_health.sh @@ -1,9 +1,29 @@ #!/bin/sh -WAIT_TIME=60 -NUM_SERVICES_WITH_HEALTH=3 +# Copyright 2019 ETSI +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or +# implied. +# See the License for the specific language governing permissions and +# limitations under the License. -while getopts "w:s:n:" o; do +WAIT_TIME=340 # LCM healthcheck needs 2x(30+140) senconds +SERVICES_WITH_HEALTH="nbi ro zookeeper lcm mon light-ui pol" +NUM_SERVICES_WITH_HEALTH=$(echo $SERVICES_WITH_HEALTH | wc -w) +WAIT_FINAL=30 +OSM_DEPLOYMENT="light-ui nbi lcm ro mon pol keystone" +OSM_STATEFULSET="zookeeper kafka mongo mysql prometheus" +NUM_K8S_PODS=$(echo $OSM_DEPLOYMENT $OSM_STATEFULSET | wc -w) + +while getopts "w:s:n:c:k" o; do case "${o}" in w) WAIT_TIME=${OPTARG} @@ -14,22 +34,60 @@ while getopts "w:s:n:" o; do n) NUM_SERVICES_WITH_HEALTH=${OPTARG} ;; + c) + SERVICES_WITH_HEALTH="${OPTARG}" + ;; + k) + KUBERNETES="y" + ;; esac done time=0 -step=1 +step=2 while [ $time -le "$WAIT_TIME" ]; do - if [ "$(docker ps | grep " ${STACK_NAME}_" | grep -i healthy | wc -l)" -ge "$NUM_SERVICES_WITH_HEALTH" ]; then - exit 0 + if [ -n "$KUBERNETES" ]; then + if [ "$(kubectl get pods -n "${STACK_NAME}" | grep -i running | wc -l)" -ge "$NUM_K8S_PODS" ]; then + #all pods are running now. + sleep $WAIT_FINAL + exit 0 + fi + else + if [ "$(docker ps | grep " ${STACK_NAME}_" | grep -i healthy | wc -l)" -ge "$NUM_SERVICES_WITH_HEALTH" ]; then + # all dockers are healthy now. + # final sleep is needed until more health checks are added to validate system is ready to handle requests + sleep $WAIT_FINAL + exit 0 + fi fi sleep $step time=$((time+step)) done -echo "Not all Docker services are healthy" -docker ps | grep " ${STACK_NAME}_" +if [ -n "$KUBERNETES" ]; then + echo "Not all pods are running" + kubectl get pods -n "${STACK_NAME}" + for POD in $OSM_DEPLOYMENT $OSM_STATEFULSET; do + kubectl get pods -n "${STACK_NAME}" | grep -i running | grep -q ^"${POD}-" && continue + echo + echo BEGIN LOGS of pods ${POD} not running + LOG_POD=$(kubectl get pods -n "${STACK_NAME}" | grep -e ^"${POD}-" | awk '{print $1}' ) + [ -z "$LOG_POD" ] && echo "${POD} Failed to deploy" || kubectl logs ${LOG_POD} -n $STACK_NAME 2>&1 | tail -n 100 + echo END LOGS of services $POD not running + done +else + echo "Not all Docker services are healthy" + docker ps | grep " ${STACK_NAME}_" + for S_WITH_HEALTH in $SERVICES_WITH_HEALTH ; do + docker ps | grep " ${STACK_NAME}_" | grep -i healthy | grep -q "_${S_WITH_HEALTH}." && continue + echo + echo BEGIN LOGS of container ${S_WITH_HEALTH} not healthy + docker service logs ${STACK_NAME}_${S_WITH_HEALTH} 2>&1 | tail -n 100 + echo END LOGS of container ${S_WITH_HEALTH} not healthy + echo + done +fi exit 1