From 427eb3e00e41319d41e292b02c43ef495a2d032d Mon Sep 17 00:00:00 2001 From: Nizamudeen A Date: Tue, 26 Jul 2022 11:01:46 +0530 Subject: [PATCH] dashboard-cephadm-e2e: update runc version cephadm dashboard e2e's were throwing this error in some machines (eg: braggi16) ```docker: Error response from daemon: OCI runtime create failed: container_linux.go:349: starting container process caused "error adding seccomp filter rule for syscall clone3: requested action matches default action of filter": unknown``` Upon further debugging it was related to the runc version where in the error prone machines the runc version is 1.01 while as per some recent threads docker needs runc version of 1.02. https://github.com/containerd/containerd/issues/6203#issuecomment-1006713706 Signed-off-by: Nizamudeen A --- scripts/dashboard/install-cephadm-e2e-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dashboard/install-cephadm-e2e-deps.sh b/scripts/dashboard/install-cephadm-e2e-deps.sh index e5fe7874..0380112d 100644 --- a/scripts/dashboard/install-cephadm-e2e-deps.sh +++ b/scripts/dashboard/install-cephadm-e2e-deps.sh @@ -39,7 +39,7 @@ if [[ ! $(command -v node) || $(node --version | grep -oE "v([0-9])+" | cut -c 2 sudo apt install -y nodejs sudo rm -f /etc/apt/sources.list.d/nodesource.list fi -sudo apt install -y libvirt-daemon-system libvirt-daemon-driver-qemu qemu-kvm libvirt-clients +sudo apt install -y libvirt-daemon-system libvirt-daemon-driver-qemu qemu-kvm libvirt-clients runc sudo usermod -aG libvirt $(id -un) newgrp libvirt # Avoid having to log out and log in for group addition to take effect. -- 2.39.5