From 22870f033dc9f4aca24d55542b29fc926ede0ef7 Mon Sep 17 00:00:00 2001 From: "tao.yang" Date: Fri, 17 Nov 2023 10:30:16 +0800 Subject: [PATCH] fix invaild debug log Signed-off-by: tao.yang --- test/scripts/debugEnv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/scripts/debugEnv.sh b/test/scripts/debugEnv.sh index f49cf5c89f..8efa14aa13 100755 --- a/test/scripts/debugEnv.sh +++ b/test/scripts/debugEnv.sh @@ -200,7 +200,7 @@ elif [ "$TYPE"x == "detail"x ] ; then done echo "=============== Check the network information of the pod ============== " - CHECK_POD=$(kubectl get pod -o wide -A --kubeconfig ${E2E_KUBECONFIG} | sed '1 d' | grep -Ev "kube-system" | awk '{printf "%s,%s\n",$1,$2}') + CHECK_POD=$(kubectl get pod -o wide -A --kubeconfig ${E2E_KUBECONFIG} | sed '1 d' | grep -Ev "kube-system|kruise-system|kubevirt" | awk '{printf "%s,%s\n",$1,$2}') if [ -n "$CHECK_POD" ]; then echo "check pod:" echo "${CHECK_POD}"