k3s/pkg/cgroups/cgroups_windows.go
Brad Davidson 55f8d9f731 lint: bare-return
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
2025-12-18 11:20:07 -08:00

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
}