mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 23:37:01 +00:00
Merge pull request #90949 from pjbgf/seccomp-least-priv-kuberuntime
Add seccomp least privilege for kuberuntime
This commit is contained in:
commit
428b500c5a
@ -148,8 +148,11 @@ func (m *kubeGenericRuntimeManager) generatePodSandboxLinuxConfig(pod *v1.Pod) (
|
||||
lc := &runtimeapi.LinuxPodSandboxConfig{
|
||||
CgroupParent: cgroupParent,
|
||||
SecurityContext: &runtimeapi.LinuxSandboxSecurityContext{
|
||||
Privileged: kubecontainer.HasPrivilegedContainer(pod),
|
||||
SeccompProfilePath: m.getSeccompProfile(pod.Annotations, "", pod.Spec.SecurityContext, nil),
|
||||
Privileged: kubecontainer.HasPrivilegedContainer(pod),
|
||||
|
||||
// Forcing sandbox to run as `runtime/default` allow users to
|
||||
// use least privileged seccomp profiles at pod level. Issue #84623
|
||||
SeccompProfilePath: v1.SeccompProfileRuntimeDefault,
|
||||
},
|
||||
}
|
||||
|
||||
|
@ -67,37 +67,29 @@ func TestGeneratePodSandboxLinuxConfigSeccomp(t *testing.T) {
|
||||
expectedProfile string
|
||||
}{
|
||||
{
|
||||
description: "no seccomp defined at pod level should return empty",
|
||||
pod: newSeccompPod(nil, nil, "", ""),
|
||||
expectedProfile: "",
|
||||
description: "no seccomp defined at pod level should return runtime/default",
|
||||
pod: newSeccompPod(nil, nil, "", "runtime/default"),
|
||||
expectedProfile: "runtime/default",
|
||||
},
|
||||
{
|
||||
description: "seccomp field defined at pod level should be honoured",
|
||||
pod: newSeccompPod(&v1.SeccompProfile{Type: v1.SeccompProfileTypeRuntimeDefault}, nil, "", ""),
|
||||
description: "seccomp field defined at pod level should not be honoured",
|
||||
pod: newSeccompPod(&v1.SeccompProfile{Type: v1.SeccompProfileTypeUnconfined}, nil, "", ""),
|
||||
expectedProfile: "runtime/default",
|
||||
},
|
||||
{
|
||||
description: "seccomp field defined at container level should not be honoured",
|
||||
pod: newSeccompPod(nil, &v1.SeccompProfile{Type: v1.SeccompProfileTypeRuntimeDefault}, "", ""),
|
||||
expectedProfile: "",
|
||||
pod: newSeccompPod(nil, &v1.SeccompProfile{Type: v1.SeccompProfileTypeUnconfined}, "", ""),
|
||||
expectedProfile: "runtime/default",
|
||||
},
|
||||
{
|
||||
description: "seccomp annotation defined at pod level should be honoured",
|
||||
pod: newSeccompPod(nil, nil, v1.SeccompProfileRuntimeDefault, ""),
|
||||
description: "seccomp annotation defined at pod level should not be honoured",
|
||||
pod: newSeccompPod(nil, nil, "unconfined", ""),
|
||||
expectedProfile: "runtime/default",
|
||||
},
|
||||
{
|
||||
description: "seccomp annotation defined at container level should not be honoured",
|
||||
pod: newSeccompPod(nil, nil, "", v1.SeccompProfileRuntimeDefault),
|
||||
expectedProfile: "",
|
||||
},
|
||||
{
|
||||
description: "prioritise pod field over pod annotation",
|
||||
pod: newSeccompPod(&v1.SeccompProfile{
|
||||
Type: v1.SeccompProfileTypeLocalhost,
|
||||
LocalhostProfile: pointer.StringPtr("pod-field"),
|
||||
}, nil, "localhost/pod-annotation", ""),
|
||||
expectedProfile: "localhost/" + filepath.Join(fakeSeccompProfileRoot, "pod-field"),
|
||||
pod: newSeccompPod(nil, nil, "", "unconfined"),
|
||||
expectedProfile: "runtime/default",
|
||||
},
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user