mirror of https://github.com/k3s-io/k3s
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
|
||
|
}
|