From 185f428fa5e6123ffa0f29e307523da138e7b028 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Mon, 7 Oct 2019 12:06:18 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- scripts/review_apps/review-apps.sh | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) (limited to 'scripts/review_apps') diff --git a/scripts/review_apps/review-apps.sh b/scripts/review_apps/review-apps.sh index a4fb4749720..4c44a32c7dd 100755 --- a/scripts/review_apps/review-apps.sh +++ b/scripts/review_apps/review-apps.sh @@ -255,25 +255,13 @@ EOF } function display_deployment_debug() { - kubectl get pods -n "$KUBE_NAMESPACE" -lrelease=${CI_ENVIRONMENT_SLUG} + # Get all pods that are not ready (this will return completed pods for minio and migrations jobs) + echoinfo "Unready Pods for release ${CI_ENVIRONMENT_SLUG}" + kubectl get pods -n "$KUBE_NAMESPACE" -lrelease=${CI_ENVIRONMENT_SLUG} --field-selector=status.phase!=Running - migrations_pod=$(get_pod "migrations"); - if [ -z "${migrations_pod}" ]; then - echoerr "Migrations pod not found." - else - echoinfo "Logs tail of the ${migrations_pod} pod..." - - kubectl logs -n "$KUBE_NAMESPACE" "${migrations_pod}" | sed "s/${REVIEW_APPS_ROOT_PASSWORD}/[REDACTED]/g" - fi - - unicorn_pod=$(get_pod "unicorn"); - if [ -z "${unicorn_pod}" ]; then - echoerr "Unicorn pod not found." - else - echoinfo "Logs tail of the ${unicorn_pod} pod..." - - kubectl logs -n "$KUBE_NAMESPACE" -c unicorn "${unicorn_pod}" | sed "s/${REVIEW_APPS_ROOT_PASSWORD}/[REDACTED]/g" - fi + # Get all non-completed jobs + echoinfo "Unsuccessful Jobs for release ${CI_ENVIRONMENT_SLUG}" + kubectl get jobs -n "$KUBE_NAMESPACE" -lrelease=${CI_ENVIRONMENT_SLUG} --field-selector=status.successful!=1 } function add_license() { -- cgit v1.2.1