Change nerdctl snapshotter to overlayfs by default (#9979)

This commit is contained in:
pingrulkin
2023-04-12 23:58:32 +02:00
committed by GitHub
parent b77780ebf7
commit cdc25523bf

View File

@ -2,7 +2,7 @@ debug = false
debug_full = false debug_full = false
address = "{{ cri_socket }}" address = "{{ cri_socket }}"
namespace = "k8s.io" namespace = "k8s.io"
snapshotter = "native" snapshotter = "{{ nerdctl_snapshotter | default('overlayfs') }}"
cni_path = "/opt/cni/bin" cni_path = "/opt/cni/bin"
cni_netconfpath = "/etc/cni/net.d" cni_netconfpath = "/etc/cni/net.d"
cgroup_manager = "{{ kubelet_cgroup_driver | default('systemd') }}" cgroup_manager = "{{ kubelet_cgroup_driver | default('systemd') }}"