From 1ef6ee2e46359032464452b1064307fcf6cd64c8 Mon Sep 17 00:00:00 2001 From: Etienne Perot Date: Tue, 9 May 2023 15:56:57 -0700 Subject: [PATCH] Enable Directfs and Systrap in `experimental-high-performance` config bundle. PiperOrigin-RevId: 530736565 --- runsc/config/config_bundles.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runsc/config/config_bundles.go b/runsc/config/config_bundles.go index 25e1e9c8d..788da6b2d 100644 --- a/runsc/config/config_bundles.go +++ b/runsc/config/config_bundles.go @@ -24,6 +24,8 @@ package config // Bundles are mutually exclusive iff their flag values overlap and differ. var Bundles = map[BundleName]Bundle{ "experimental-high-performance": { + "directfs": "true", "overlay2": "root:self", + "platform": "systrap", }, }