mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-30 22:19:46 +00:00
15 lines
291 B
Go
15 lines
291 B
Go
package templates
|
|
|
|
import (
|
|
"github.com/rancher/wharfie/pkg/registries"
|
|
|
|
"github.com/rancher/k3s/pkg/daemons/config"
|
|
)
|
|
|
|
type ContainerdConfig struct {
|
|
NodeConfig *config.Node
|
|
DisableCgroup bool
|
|
IsRunningInUserNS bool
|
|
PrivateRegistryConfig *registries.Registry
|
|
}
|