mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-26 01:22:51 +00:00
Signed-off-by: joyceliu <joyceliu@yunify.com> Co-authored-by: joyceliu <joyceliu@yunify.com>
19 lines
492 B
YAML
19 lines
492 B
YAML
cri:
|
|
# support: systemd, cgroupfs
|
|
cgroup_driver: systemd
|
|
sandbox_image: |
|
|
{{ .k8s_registry }}/pause:3.5
|
|
# support: containerd,docker,crio
|
|
# the endpoint of containerd
|
|
cri_socket: |
|
|
{{- if .cri.container_manager | eq "containerd" }}
|
|
unix:///var/run/containerd.sock
|
|
{{- end }}
|
|
containerd:
|
|
data_root: /var/lib/containerd
|
|
docker:
|
|
data_root: /var/lib/docker
|
|
registry:
|
|
mirrors: ["https://registry-1.docker.io"]
|
|
insecure_registries: []
|
|
auths: [] |