diff --git a/profiles/seccomp/default.json b/profiles/seccomp/default.json index 1addba4e46..91f04d6ec4 100755 --- a/profiles/seccomp/default.json +++ b/profiles/seccomp/default.json @@ -593,6 +593,11 @@ "action": "SCMP_ACT_ALLOW", "args": [] }, + { + "name": "ipc", + "action": "SCMP_ACT_ALLOW", + "args": [] + }, { "name": "kill", "action": "SCMP_ACT_ALLOW", diff --git a/profiles/seccomp/seccomp_default.go b/profiles/seccomp/seccomp_default.go index 9fa50979b0..181e9f5002 100644 --- a/profiles/seccomp/seccomp_default.go +++ b/profiles/seccomp/seccomp_default.go @@ -625,6 +625,11 @@ var DefaultProfile = &types.Seccomp{ Action: types.ActAllow, Args: []*types.Arg{}, }, + { + Name: "ipc", + Action: types.ActAllow, + Args: []*types.Arg{}, + }, { Name: "kill", Action: types.ActAllow,