mirror of https://github.com/k3s-io/k3s
Brad Davidson
2 years ago
committed by
Brad Davidson
4 changed files with 22 additions and 4 deletions
@ -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