From f72c4e92c5f56c9095a33d096de1c3cf803986cb Mon Sep 17 00:00:00 2001 From: Andrew Theurer Date: Thu, 21 Mar 2024 21:02:39 -0400 Subject: [PATCH] Need /run for openvswitch --- endpoints/osruntime-bootstrap | 1 + 1 file changed, 1 insertion(+) diff --git a/endpoints/osruntime-bootstrap b/endpoints/osruntime-bootstrap index 9fdc60f0..4b589059 100755 --- a/endpoints/osruntime-bootstrap +++ b/endpoints/osruntime-bootstrap @@ -269,6 +269,7 @@ function launch_osruntime() { cs_cmd+=" --net=host" cs_cmd+=" --security-opt=label=disable" cs_cmd+=" --mount=type=bind,source=$data_dir,destination=/tmp" + cs_cmd+=" --mount=type=bind,source=/run,destination=/run" cs_cmd+=" --mount=type=bind,source=/lib/firmware,destination=/lib/firmware" cs_cmd+=" --mount=type=bind,source=/lib/modules,destination=/lib/modules" cs_cmd+=" --mount=type=bind,source=/usr/src,destination=/usr/src"