统一 Pod 与 VM executor 镜像和 Docker 启动模型 #40

Merged
panxiao81 merged 5 commits from feat/systemd-vm-guest into main 2026-09-21 12:05:22 +00:00
Showing only changes of commit 51b940468e - Show all commits
+11
View File
@@ -79,6 +79,17 @@ jobs:
crictl --runtime-endpoint "$endpoint" inspect "$id"
crictl --runtime-endpoint "$endpoint" logs "$id"
done
echo "### containerd metadata"
timeout 10 ctr --namespace k8s.io containers list
timeout 10 ctr --namespace k8s.io snapshots list
echo "### runtime process stacks"
ps -e -o pid,ppid,stat,wchan:32,comm,args
for pid in $(pidof containerd containerd-shim-runc-v2); do
echo "### kernel stack $pid"
cat "/proc/$pid/stack"
done
kill -USR1 "$(pidof containerd)"
sleep 2
journalctl --no-pager -b -n 500
' 2>&1 || true
echo '::endgroup::'