mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
89f7062431
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
17 lines
281 B
Go
17 lines
281 B
Go
//go:build windows && !no_cri_dockerd
|
|
// +build windows,!no_cri_dockerd
|
|
|
|
package cridockerd
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/k3s-io/k3s/pkg/daemons/config"
|
|
)
|
|
|
|
const socketPrefix = "npipe://"
|
|
|
|
func setupDockerCRIConfig(ctx context.Context, cfg *config.Node) error {
|
|
return nil
|
|
}
|