From 228b30f31c95fc40c20c26d03545ef53d851f93f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 20 Jul 2023 22:24:24 +0200 Subject: [PATCH] ci: k8s: Gather node info during the cleanup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will make our lives easier to debug issues with the CI. Signed-off-by: Fabiano FidĂȘncio --- tests/integration/kubernetes/gha-run.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/kubernetes/gha-run.sh b/tests/integration/kubernetes/gha-run.sh index cd35fc308..31e377e62 100755 --- a/tests/integration/kubernetes/gha-run.sh +++ b/tests/integration/kubernetes/gha-run.sh @@ -173,6 +173,7 @@ function get_nodes_and_pods_info() { if [[ "${describe_pods}" == "yes" ]]; then kubectl describe pods -A fi + kubectl debug $(kubectl get nodes -o name) -it --image=quay.io/kata-containers/kata-debug:latest } function main() {