From 468a3218f53762d10b27e1ad34508f18ca4549d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 21 Sep 2023 08:53:05 +0200 Subject: [PATCH] ci: crio: Pass `-y` to apt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit That was something overlooked during my tests. :-/ Fixes: #8005 Signed-off-by: Fabiano FidĂȘncio (cherry picked from commit ebaa4fa4c10e2fe4ded5b67373e079d5e68c61c3) --- tests/gha-run-k8s-common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gha-run-k8s-common.sh b/tests/gha-run-k8s-common.sh index 01d825c284..44b6601e3c 100644 --- a/tests/gha-run-k8s-common.sh +++ b/tests/gha-run-k8s-common.sh @@ -224,7 +224,7 @@ function setup_crio() { curl -L https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable:cri-o:${crio_version}/${os}/Release.key | sudo apt-key add - curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/${os}/Release.key | sudo apt-key add - sudo apt update - sudo apt install cri-o cri-o-runc + sudo apt install -y cri-o cri-o-runc sudo systemctl enable --now crio }