Don't check for cpuset cgroup, not always required?

k3s-v1.14.6
Darren Shepherd 2019-01-22 13:42:12 -07:00 committed by Erik Wilson
parent e92667654b
commit bc9b837dbd
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,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 {