mirror of https://github.com/easzlab/kubeasz.git
99 lines
2.6 KiB
Django/Jinja
99 lines
2.6 KiB
Django/Jinja
root = "{{ STORAGE_DIR }}"
|
|
state = "/run/containerd"
|
|
oom_score = 0
|
|
|
|
[grpc]
|
|
address = "/run/containerd/containerd.sock"
|
|
uid = 0
|
|
gid = 0
|
|
max_recv_message_size = 16777216
|
|
max_send_message_size = 16777216
|
|
|
|
[debug]
|
|
address = ""
|
|
uid = 0
|
|
gid = 0
|
|
level = ""
|
|
|
|
[metrics]
|
|
address = ""
|
|
grpc_histogram = false
|
|
|
|
[cgroup]
|
|
path = ""
|
|
|
|
[plugins]
|
|
[plugins.cgroups]
|
|
no_prometheus = false
|
|
[plugins.cri]
|
|
stream_server_address = "127.0.0.1"
|
|
stream_server_port = "0"
|
|
enable_selinux = false
|
|
sandbox_image = "{{ SANDBOX_IMAGE }}"
|
|
stats_collect_period = 10
|
|
systemd_cgroup = false
|
|
enable_tls_streaming = false
|
|
max_container_log_line_size = 16384
|
|
[plugins.cri.containerd]
|
|
snapshotter = "overlayfs"
|
|
no_pivot = false
|
|
[plugins.cri.containerd.default_runtime]
|
|
runtime_type = "io.containerd.runtime.v1.linux"
|
|
runtime_engine = ""
|
|
runtime_root = ""
|
|
[plugins.cri.containerd.untrusted_workload_runtime]
|
|
runtime_type = ""
|
|
runtime_engine = ""
|
|
runtime_root = ""
|
|
[plugins.cri.cni]
|
|
bin_dir = "{{ bin_dir }}"
|
|
conf_dir = "/etc/cni/net.d"
|
|
conf_template = ""
|
|
{% if ENABLE_MIRROR_REGISTRY %}
|
|
[plugins.cri.registry]
|
|
[plugins.cri.registry.mirrors]
|
|
# reference from https://www.ilanni.com/?p=14534
|
|
[plugins.cri.registry.mirrors."docker.io"]
|
|
endpoint = [
|
|
"https://dockerhub.azk8s.cn",
|
|
"https://docker.mirrors.ustc.edu.cn",
|
|
"http://hub-mirror.c.163.com"
|
|
]
|
|
[plugins.cri.registry.mirrors."gcr.io"]
|
|
endpoint = [
|
|
"https://gcr.azk8s.cn",
|
|
"https://gcr.mirrors.ustc.edu.cn"
|
|
]
|
|
[plugins.cri.registry.mirrors."k8s.gcr.io"]
|
|
endpoint = [
|
|
"https://gcr.azk8s.cn/google-containers/",
|
|
"https://gcr.mirrors.ustc.edu.cn/google-containers/"
|
|
]
|
|
[plugins.cri.registry.mirrors."quay.io"]
|
|
endpoint = [
|
|
"https://quay.azk8s.cn",
|
|
"https://quay.mirrors.ustc.edu.cn"
|
|
]
|
|
{% endif %}
|
|
[plugins.cri.x509_key_pair_streaming]
|
|
tls_cert_file = ""
|
|
tls_key_file = ""
|
|
[plugins.diff-service]
|
|
default = ["walking"]
|
|
[plugins.linux]
|
|
shim = "containerd-shim"
|
|
runtime = "runc"
|
|
runtime_root = ""
|
|
no_shim = false
|
|
shim_debug = false
|
|
[plugins.opt]
|
|
path = "/opt/containerd"
|
|
[plugins.restart]
|
|
interval = "10s"
|
|
[plugins.scheduler]
|
|
pause_threshold = 0.02
|
|
deletion_threshold = 0
|
|
mutation_threshold = 100
|
|
schedule_delay = "0s"
|
|
startup_delay = "100ms"
|