mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-09-10 05:08:54 +00:00
Merge pull request #615 from likebreath/disable_clh_seccomp
clh: Disable the 'seccomp' option temporarily
This commit is contained in:
@@ -959,6 +959,12 @@ func (clh *cloudHypervisor) LaunchClh() (int, error) {
|
|||||||
args = append(args, "-vv")
|
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("path", clhPath).Info()
|
||||||
clh.Logger().WithField("args", strings.Join(args, " ")).Info()
|
clh.Logger().WithField("args", strings.Join(args, " ")).Info()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user