k3s/pkg/cgroups/cgroups_windows.go
Jamie Phillips 7345ac35ae
Initial windows support for agent (#3375)
Signed-off-by: Jamie Phillips <jamie.phillips@suse.com>
2021-06-01 12:29:46 -07:00

12 lines
184 B
Go

// +build windows
package cgroups
func Validate() error {
return nil
}
func CheckCgroups() (kubeletRoot, runtimeRoot string, hasCFS, hasPIDs bool) {
return "", "", false, false
}