mirror of
https://github.com/k3s-io/k3s.git
synced 2026-04-06 09:55:01 -04:00
11 lines
209 B
Go
11 lines
209 B
Go
//go:build windows
|
|
|
|
package cgroups
|
|
|
|
func Validate() error {
|
|
return nil
|
|
}
|
|
|
|
func CheckCgroups() (kubeletRoot, runtimeRoot string, controllers map[string]bool) {
|
|
return kubeletRoot, runtimeRoot, controllers
|
|
}
|