mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
17 lines
416 B
Go
17 lines
416 B
Go
|
// +build windows
|
||
|
|
||
|
package containerd
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/rancher/k3s/pkg/daemons/config"
|
||
|
)
|
||
|
|
||
|
// setupContainerdConfig generates the containerd.toml, using a template combined with various
|
||
|
// runtime configurations and registry mirror settings provided by the administrator.
|
||
|
func setupContainerdConfig(ctx context.Context, cfg *config.Node) error {
|
||
|
// TODO: Create windows config setup.
|
||
|
return nil
|
||
|
}
|