mirror of
https://github.com/k3s-io/k3s.git
synced 2026-05-28 04:34:19 -04:00
14 lines
240 B
Go
14 lines
240 B
Go
//go: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")
|
|
}
|