diff --git a/server/sandbox_run.go b/server/sandbox_run.go index bcda3f1a..2f7ea045 100644 --- a/server/sandbox_run.go +++ b/server/sandbox_run.go @@ -25,6 +25,14 @@ import ( "k8s.io/kubernetes/pkg/kubelet/network/hostport" ) +const ( + // PodInfraOOMAdj is the value that we set for oom score adj for + // the pod infra container. + // TODO: Remove this const once this value is provided over CRI + // See https://github.com/kubernetes/kubernetes/issues/47938 + PodInfraOOMAdj int = -998 +) + // privilegedSandbox returns true if the sandbox configuration // requires additional host privileges for the sandbox. func (s *Server) privilegedSandbox(req *pb.RunPodSandboxRequest) bool { @@ -393,6 +401,10 @@ func (s *Server) RunPodSandbox(ctx context.Context, req *pb.RunPodSandboxRequest } } + // Set OOM score adjust of the infra container to be very low + // so it doesn't get killed. + g.SetLinuxResourcesOOMScoreAdj(PodInfraOOMAdj) + hostNetwork := req.GetConfig().GetLinux().GetSecurityContext().GetNamespaceOptions().HostNetwork // set up namespaces