Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
clh: Disable the 'seccomp' option temporarily
Browse files Browse the repository at this point in the history
We kept observing instabilities from CLH CI jobs periodically. To
separate the random failures caused by `seccomp` from other failures,
this patch disables the 'seccomp' option from clh in kata for now. We
will bring this option back after completing the 'seccomp' filter lists
based on Kata's CI workload.

Fixes: #2899

Signed-off-by: Bo Chen <[email protected]>
  • Loading branch information
likebreath committed Aug 25, 2020
1 parent 60c41be commit dfb8ed7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions virtcontainers/clh.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit dfb8ed7

Please sign in to comment.