mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 00:59:22 +00:00
13 lines
189 B
Go
13 lines
189 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package cgroups
|
|
|
|
func Validate() error {
|
|
return nil
|
|
}
|
|
|
|
func CheckCgroups() (kubeletRoot, runtimeRoot string, controllers map[string]bool) {
|
|
return
|
|
}
|