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>
16 lines
265 B
Go
16 lines
265 B
Go
//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")
|
|
}
|