4c8b93e5b9
* Add limited containerd support Containerd support for Ubuntu + Calico * Added CRI-O support for ubuntu * containerd support. * Reset containerd support. * fix lint. * implemented feedback * Change task name cri xx instead of cri-o in reset task and timeout condition. * set crictl to fixed version * Use docker-ce's container.io package for containerd. * Add check containerd is installable or not. * Avoid stop docker when use containerd and optimize retry for reset. * Add config.toml. * Fixed containerd for kubelet.env. * Merge PR #4629 * Remove unused ubuntu variable for containerd * Polish code for containerd and cri-o * Refactoring cri socket configuration. * Configurable conmon. * Remove unused crictl/runc download * Now crictl and runc is downloaded by common crictl.yml. * fixed yamllint error * Fixed brokenfiles by conflict. * Remove commented line in config.toml * Remove readded v1.12.x version * Fixed broken set_docker_image_facts * Fix yamllint errors. * Remove unused apt source * Fix crictl could not be installed * Add containerd config from skolekonov's PR #4601
40 lines
1.1 KiB
Django/Jinja
40 lines
1.1 KiB
Django/Jinja
# Kubernetes doesn't use containerd restart manager.
|
|
disabled_plugins = ["restart"]
|
|
|
|
[debug]
|
|
level = "{{ containerd_config.debug.level | default("") }}"
|
|
|
|
{% if 'grpc' in containerd_config %}
|
|
[grpc]
|
|
{% for param, value in containerd_config.grpc.items() %}
|
|
{{ param }} = {{ value }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
[plugins.linux]
|
|
shim = "/usr/bin/containerd-shim"
|
|
runtime = "/usr/sbin/runc"
|
|
|
|
[plugins.cri]
|
|
stream_server_address = "127.0.0.1"
|
|
max_container_log_line_size = {{ containerd_config.max_container_log_line_size }}
|
|
sandbox_image = "{{ pod_infra_image_repo }}:{{ pod_infra_image_tag }}"
|
|
|
|
[plugins.cri.cni]
|
|
bin_dir = "/opt/cni/bin"
|
|
conf_dir = "/etc/cni/net.d"
|
|
conf_template = ""
|
|
|
|
[plugins.cri.containerd.untrusted_workload_runtime]
|
|
runtime_type = ""
|
|
runtime_engine = ""
|
|
runtime_root = ""
|
|
|
|
{% if 'registries' in containerd_config %}
|
|
[plugins.cri.registry]
|
|
[plugins.cri.registry.mirrors]
|
|
{% for registry, addr in containerd_config.registries.items() %}
|
|
[plugins.cri.registry.mirrors."{{ registry }}"]
|
|
endpoint = ["{{ addr }}"]
|
|
{% endfor %}
|
|
{% endif %}
|