From 3ddaa93e5b8dde07b7a5535f8bb0c13ba895b0e1 Mon Sep 17 00:00:00 2001 From: Ilya Hanov Date: Tue, 18 Oct 2022 20:11:23 +0800 Subject: [PATCH] Support IMA namespace json configuration Add an IMA namespace field for containers to be able to create IMA namespace using json configuration Signed-off-by: Ilya Hanov --- specs-go/config.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/specs-go/config.go b/specs-go/config.go index 068edd052..91ae6b0ae 100644 --- a/specs-go/config.go +++ b/specs-go/config.go @@ -218,6 +218,8 @@ const ( UTSNamespace LinuxNamespaceType = "uts" // UserNamespace for isolating user and group IDs UserNamespace LinuxNamespaceType = "user" + // ImaNamespace for isolating PCR values + ImaNamespace LinuxNamespaceType = "ima" // CgroupNamespace for isolating cgroup hierarchies CgroupNamespace LinuxNamespaceType = "cgroup" )