From d465d6495aefc2a82d17f54f1d2342add997d67d 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 8253df72bd..3d0c08bf37 100644 --- a/pkg/kubelet/cm/container_manager_linux.go +++ b/pkg/kubelet/cm/container_manager_linux.go @@ -158,7 +158,7 @@ func validateSystemRequirements(mountUtil mount.Interface) (features, error) { return f, fmt.Errorf("%s - %v", localErr, err) } - expectedCgroups := sets.NewString("cpu", "cpuacct", "cpuset", "memory") + expectedCgroups := sets.NewString("cpu", "cpuacct", "memory") for _, mountPoint := range mountPoints { if mountPoint.Type == cgroupMountType { for _, opt := range mountPoint.Opts {