Lightweight Kubernetes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
281 B

//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
}