Skip to content

Commit b35bbec

Browse files
authored
Merge pull request kubernetes#128506 from kolyshkin/cgroups-nit
kubelet/kuberuntime: switch to runc/libct
2 parents 4cf2818 + 19477b7 commit b35bbec

File tree

5 files changed

+23
-544
lines changed

5 files changed

+23
-544
lines changed

LICENSES/third_party/forked/cgroups/LICENSE

-201
This file was deleted.

pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

+23-28
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ import (
4545
kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
4646
"k8s.io/kubernetes/pkg/kubelet/qos"
4747
kubelettypes "k8s.io/kubernetes/pkg/kubelet/types"
48-
cgroups "k8s.io/kubernetes/third_party/forked/cgroups"
4948
"k8s.io/utils/ptr"
5049
)
5150

@@ -339,38 +338,35 @@ var isCgroup2UnifiedMode = func() bool {
339338
return libcontainercgroups.IsCgroup2UnifiedMode()
340339
}
341340

342-
var (
343-
swapControllerAvailability bool
344-
swapControllerAvailabilityOnce sync.Once
345-
)
346-
347341
// Note: this function variable is being added here so it would be possible to mock
348342
// the swap controller availability for unit tests by assigning a new function to it. Without it,
349343
// the swap controller availability would solely depend on the environment running the test.
350-
var swapControllerAvailable = func() bool {
344+
var swapControllerAvailable = sync.OnceValue(func() bool {
351345
// See https://github.com/containerd/containerd/pull/7838/
352-
swapControllerAvailabilityOnce.Do(func() {
353-
const warn = "Failed to detect the availability of the swap controller, assuming not available"
354-
p := "/sys/fs/cgroup/memory/memory.memsw.limit_in_bytes"
355-
if isCgroup2UnifiedMode() {
356-
// memory.swap.max does not exist in the cgroup root, so we check /sys/fs/cgroup/<SELF>/memory.swap.max
357-
_, unified, err := cgroups.ParseCgroupFileUnified("/proc/self/cgroup")
358-
if err != nil {
359-
klog.V(5).ErrorS(fmt.Errorf("failed to parse /proc/self/cgroup: %w", err), warn)
360-
return
361-
}
362-
p = filepath.Join("/sys/fs/cgroup", unified, "memory.swap.max")
346+
const warn = "Failed to detect the availability of the swap controller, assuming not available"
347+
p := "/sys/fs/cgroup/memory/memory.memsw.limit_in_bytes"
348+
if isCgroup2UnifiedMode() {
349+
// memory.swap.max does not exist in the cgroup root, so we check /sys/fs/cgroup/<SELF>/memory.swap.max
350+
cm, err := libcontainercgroups.ParseCgroupFile("/proc/self/cgroup")
351+
if err != nil {
352+
klog.V(5).ErrorS(fmt.Errorf("failed to parse /proc/self/cgroup: %w", err), warn)
353+
return false
363354
}
364-
if _, err := os.Stat(p); err != nil {
365-
if !errors.Is(err, os.ErrNotExist) {
366-
klog.V(5).ErrorS(err, warn)
367-
}
368-
return
355+
// Fr cgroup v2 unified hierarchy, there are no per-controller
356+
// cgroup paths, so the cm map returned by ParseCgroupFile above
357+
// has a single element where the key is empty string ("") and
358+
// the value is the cgroup path the <pid> is in.
359+
p = filepath.Join("/sys/fs/cgroup", cm[""], "memory.swap.max")
360+
}
361+
if _, err := os.Stat(p); err != nil {
362+
if !errors.Is(err, os.ErrNotExist) {
363+
klog.V(5).ErrorS(err, warn)
369364
}
370-
swapControllerAvailability = true
371-
})
372-
return swapControllerAvailability
373-
}
365+
return false
366+
}
367+
368+
return true
369+
})
374370

375371
type swapConfigurationHelper struct {
376372
machineInfo cadvisorv1.MachineInfo
@@ -392,7 +388,6 @@ func (m swapConfigurationHelper) ConfigureLimitedSwap(lcr *runtimeapi.LinuxConta
392388

393389
containerMemoryRequest := container.Resources.Requests.Memory()
394390
swapLimit, err := calcSwapForBurstablePods(containerMemoryRequest.Value(), int64(m.machineInfo.MemoryCapacity), int64(m.machineInfo.SwapCapacity))
395-
396391
if err != nil {
397392
klog.ErrorS(err, "cannot calculate swap allocation amount; disallowing swap")
398393
m.ConfigureNoSwap(lcr)

0 commit comments

Comments
 (0)