mirror of
https://github.com/k3s-io/k3s.git
synced 2026-04-06 09:55:01 -04:00
23 lines
629 B
Go
23 lines
629 B
Go
//go:build windows
|
|
|
|
package containerd
|
|
|
|
import (
|
|
"github.com/k3s-io/k3s/pkg/util/errors"
|
|
)
|
|
|
|
func OverlaySupported(root string) error {
|
|
return errors.WithMessagef(errors.ErrUnsupportedPlatform, "overlayfs is not supported")
|
|
}
|
|
|
|
func FuseoverlayfsSupported(root string) error {
|
|
return errors.WithMessagef(errors.ErrUnsupportedPlatform, "fuse-overlayfs is not supported")
|
|
}
|
|
|
|
func StargzSupported(root string) error {
|
|
return errors.WithMessagef(errors.ErrUnsupportedPlatform, "stargz is not supported")
|
|
}
|
|
|
|
func NixSupported(root string) error {
|
|
return errors.WithMessagef(errors.ErrUnsupportedPlatform, "nix is not supported")
|
|
}
|