diff --git a/virtcontainers/clh.go b/virtcontainers/clh.go index 7319449e76..a71865a7a9 100644 --- a/virtcontainers/clh.go +++ b/virtcontainers/clh.go @@ -955,6 +955,12 @@ func (clh *cloudHypervisor) LaunchClh() (string, int, error) { args = append(args, "-vv") } + // Disable the 'seccomp' option in clh for now. + // In this way, we can separate the periodic failures caused + // by incomplete `seccomp` filters from other failures. + // We will bring it back after completing the `seccomp` filter. + args = append(args, "--seccomp", "false") + clh.Logger().WithField("path", clhPath).Info() clh.Logger().WithField("args", strings.Join(args, " ")).Info()