From a3972f6e5d0766646c27974d02a948baf12e4f13 Mon Sep 17 00:00:00 2001 From: Alan Meadows Date: Fri, 9 Jun 2017 08:10:15 -0700 Subject: [PATCH] Ensure gate failure summary shows node assigned to each pod Change-Id: Ic765a423eddcd13961b395cbcee7b86c5fd07760 --- tools/gate/funcs/kube.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/gate/funcs/kube.sh b/tools/gate/funcs/kube.sh index ee38107a19..f5ae897ed9 100755 --- a/tools/gate/funcs/kube.sh +++ b/tools/gate/funcs/kube.sh @@ -39,7 +39,7 @@ function kube_wait_for_pods { sleep 1 now=$(date +%s) [ $now -gt $end ] && echo containers failed to start. && \ - kubectl get pods --namespace $1 && exit -1 + kubectl get pods --namespace $1 -o wide && exit -1 done set -x }