mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 20:49:02 +00:00
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
|
|
}
|