d3954a5590
* fix flake8 errors in Kubespray CI - tox-inventory-builder * fix flake8 errors in Kubespray CI - tox-inventory-builder * Invalidate CRI-O kubic repo's cache Signed-off-by: Victor Morales <v.morales@samsung.com> * add support to configure pkg install retries and use in CI job tf-ovh_ubuntu18-calico (due to it failing often) * Switch Calico and Cilium image repos to Quay.io Co-authored-by: Victor Morales <v.morales@samsung.com> Co-authored-by: Barry Melbourne <9964974+bmelbourne@users.noreply.github.com> Conflicts: roles/download/defaults/main.yml * up vagrant box to fedora/33-cloud-base in cri-o molecule tests (cherry picked from commit06ec5393d7
) * add Google proxy-mirror-cache for docker hub to CI tests (cherry picked from commitd739a6bb2f
) * containerd docker hub registry mirror support * containerd docker hub registry mirror support * add docs * fix typo * fix yamllint * fix indent in sample and ansible-playbook param in testcases_run * fix md * mv common vars to tests/common/_docker_hub_registry_mirror.yml * checkout vars to upgrade tests (cherry picked from commit4a8a52bad9
) * Exclude .git/ from shellcheck If a branch name contains '.sh', current shellcheck checks the branch file under .git/ and outputs error because the format is not shell script one. This makes shellcheck exclude files under .git/ to avoid this issue. (cherry picked from commite2467d87b6
) Co-authored-by: Hans Feldt <2808287+hafe@users.noreply.github.com> Co-authored-by: Sergey <s.bondarev@southbridge.ru> Co-authored-by: Kenichi Omichi <ken-oomichi@wx.jp.nec.com>
73 lines
2.3 KiB
Django/Jinja
73 lines
2.3 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 = "{{ runc_binary }}"
|
|
|
|
[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 }}"
|
|
systemd_cgroup = {{ containerd_use_systemd_cgroup|lower }}
|
|
|
|
[plugins.cri.cni]
|
|
bin_dir = "/opt/cni/bin"
|
|
conf_dir = "/etc/cni/net.d"
|
|
conf_template = ""
|
|
|
|
{% if 'containerd' in containerd_config %}
|
|
[plugins.cri.containerd]
|
|
{% for param, value in containerd_config.containerd.items() %}
|
|
{{ param }} = {{ value }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
[plugins.cri.containerd.default_runtime]
|
|
runtime_type = "{{ containerd_default_runtime.type }}"
|
|
runtime_engine = "{{ containerd_default_runtime.engine }}"
|
|
runtime_root = "{{ containerd_default_runtime.root }}"
|
|
|
|
{% if kata_containers_enabled %}
|
|
[plugins.cri.containerd.runtimes.kata-qemu]
|
|
runtime_type = "io.containerd.kata-qemu.v2"
|
|
[plugins.cri.containerd.runtimes.kata-qemu.options]
|
|
ConfigPath = "/etc/kata-containers/configuration-qemu.toml"
|
|
{% endif %}
|
|
|
|
{% for runtime in containerd_runtimes %}
|
|
[plugins.cri.containerd.runtimes.{{ runtime.name }}]
|
|
runtime_type = "{{ runtime.type }}"
|
|
runtime_engine = "{{ runtime.engine }}"
|
|
runtime_root = "{{ runtime.root }}"
|
|
{% endfor %}
|
|
|
|
[plugins.cri.containerd.untrusted_workload_runtime]
|
|
runtime_type = "{{ containerd_untrusted_runtime_type }}"
|
|
runtime_engine = "{{ containerd_untrusted_runtime_engine }}"
|
|
runtime_root = "{{ containerd_untrusted_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 ] | flatten ) | join('","') }}"]
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if 'metrics' in containerd_config %}
|
|
[metrics]
|
|
address = "{{ containerd_config.metrics.address | default('') }}"
|
|
grpc_histogram = {{ containerd_config.metrics.grpc_histogram | default(false) | lower }}
|
|
{% endif %}
|