mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
7345ac35ae
Signed-off-by: Jamie Phillips <jamie.phillips@suse.com>
12 lines
184 B
Go
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
|
|
}
|