From 5df9ae2d7abcdf28de490d6fe8346592731e35c0 Mon Sep 17 00:00:00 2001 From: Darren Shepherd Date: Tue, 22 Jan 2019 13:42:12 -0700 Subject: [PATCH] Don't check for cpuset cgroup, not always required? --- pkg/kubelet/cm/container_manager_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/cm/container_manager_linux.go b/pkg/kubelet/cm/container_manager_linux.go index 29be9d202b8..f280fa573dd 100644 --- a/pkg/kubelet/cm/container_manager_linux.go +++ b/pkg/kubelet/cm/container_manager_linux.go @@ -162,7 +162,7 @@ func validateSystemRequirements(mountUtil mount.Interface) (features, error) { return f, nil } - expectedCgroups := sets.New("cpu", "cpuacct", "cpuset", "memory") + expectedCgroups := sets.New("cpu", "cpuacct", "memory") for _, mountPoint := range mountPoints { if mountPoint.Type == cgroupMountType { for _, opt := range mountPoint.Opts {