mirror of https://github.com/k3s-io/k3s
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>pull/6726/head
parent
f10af367c3
commit
89f7062431
@ -0,0 +1,15 @@
|
||||
//go:build no_cri_dockerd
|
||||
// +build no_cri_dockerd
|
||||
|
||||
package cridockerd
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
|
||||
"github.com/k3s-io/k3s/pkg/daemons/config"
|
||||
)
|
||||
|
||||
func Run(ctx context.Context, cfg *config.Node) error {
|
||||
return errors.New("cri-dockerd disabled at build time")
|
||||
}
|
Loading…
Reference in new issue