From a11e0dfc1334db3b526cf24ea730c89f617d05f7 Mon Sep 17 00:00:00 2001 From: Christian Schlotter Date: Mon, 15 May 2023 17:05:56 +0200 Subject: [PATCH] e2e: log leftover processes to eventually detect zombies --- scripts/ci-e2e.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/ci-e2e.sh b/scripts/ci-e2e.sh index 51ecb6474e29..ff754dc3b620 100755 --- a/scripts/ci-e2e.sh +++ b/scripts/ci-e2e.sh @@ -87,6 +87,8 @@ cleanup() { ctr -n moby images list > "${ARTIFACTS_LOCAL}/containerd-images.txt" || true ctr -n moby version > "${ARTIFACTS_LOCAL}/containerd-version.txt" || true + ps -ef > "${ARTIFACTS_LOCAL}/processes-ps-ef.txt" || true + # Verify that no containers are running at this time # Note: This verifies that all our tests clean up clusters correctly. if [[ ! "$(docker ps -q | wc -l)" -eq "0" ]]