diff --git a/start-k8s.sh b/start-k8s.sh index 3b1b278a..6b0403ae 100755 --- a/start-k8s.sh +++ b/start-k8s.sh @@ -123,6 +123,9 @@ cur_timestamp="$(date +%s)" end_timestamp="$((cur_timestamp + TIMEOUT_SECONDS))" while true; do if [ "$(date +%s)" -gt "$end_timestamp" ]; then + for pod in $(kubectl get pods -l application=jasminegraph ); do + kubectl describe pod "$pod" + done echo "Pods are not running" exit 1 fi