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

k3s-v1.13.4
Darren Shepherd 2019-01-22 13:42:12 -07:00
parent 34a12f90a8
commit d465d6495a
1 changed files with 1 additions and 1 deletions

View File

@ -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 {