From f8e44172f6d132de5e772d92e9b672afc71c2568 Mon Sep 17 00:00:00 2001 From: tg5788re Date: Fri, 3 Mar 2023 09:56:12 -0600 Subject: [PATCH] utils: Make kata-manager.sh runs checks Updated the `kata-manager.sh` script to make it run all the checks on the host system before attempting to create a container. If any checks fail, they will indicate to the user what the problem is in a clearer manner than those reported by the container manager. Fixes: #6281. Signed-off-by: tg5788re --- utils/kata-manager.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/kata-manager.sh b/utils/kata-manager.sh index 8d78aa4479..fbc911ab43 100755 --- a/utils/kata-manager.sh +++ b/utils/kata-manager.sh @@ -638,6 +638,8 @@ test_installation() { info "Testing $kata_project\n" + sudo kata-runtime check -v + local image="docker.io/library/busybox:latest" sudo ctr image pull "$image"