From 98277b5a8f73196d33826b09ac90f711ee4b6c14 Mon Sep 17 00:00:00 2001 From: Dan Chiarlone Date: Thu, 4 May 2023 10:22:48 -0700 Subject: [PATCH] enable all capability linkage (#97) Signed-off-by: danbugs --- containerd-shim-slight-v1/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containerd-shim-slight-v1/src/main.rs b/containerd-shim-slight-v1/src/main.rs index 189325d9..1b4bf347 100644 --- a/containerd-shim-slight-v1/src/main.rs +++ b/containerd-shim-slight-v1/src/main.rs @@ -117,7 +117,7 @@ impl Instance for Wasi { stdout_path: Some(PathBuf::from(pod_stdout)), stderr_path: Some(PathBuf::from(pod_stderr)), }), - link_all_capabilities: false, + link_all_capabilities: true, }; let f = handle_run(args);