f4b95d42a6
When we saw 0 as the default value of containerd_oom_score, we had a question why the value was not -999. This adds the note to explain it.
61 lines
1.8 KiB
YAML
61 lines
1.8 KiB
YAML
---
|
|
containerd_storage_dir: "/var/lib/containerd"
|
|
containerd_state_dir: "/run/containerd"
|
|
containerd_systemd_dir: "/etc/systemd/system/containerd.service.d"
|
|
# The default value is not -999 here because containerd's oom_score_adj has been
|
|
# set to the -999 even if containerd_oom_score is 0.
|
|
# Ref: https://github.com/kubernetes-sigs/kubespray/pull/9275#issuecomment-1246499242
|
|
containerd_oom_score: 0
|
|
|
|
# containerd_default_runtime: "runc"
|
|
# containerd_snapshotter: "native"
|
|
|
|
containerd_runc_runtime:
|
|
name: runc
|
|
type: "io.containerd.runc.v2"
|
|
engine: ""
|
|
root: ""
|
|
# base_runtime_spec: cri-base.json # use this to limit number of file descriptors per container
|
|
options:
|
|
systemdCgroup: "{{ containerd_use_systemd_cgroup | ternary('true', 'false') }}"
|
|
|
|
containerd_additional_runtimes: []
|
|
# Example for Kata Containers as additional runtime:
|
|
# - name: kata
|
|
# type: "io.containerd.kata.v2"
|
|
# engine: ""
|
|
# root: ""
|
|
|
|
containerd_base_runtime_specs:
|
|
cri-base.json: "{{ lookup('file', 'cri-base.json') }}"
|
|
|
|
containerd_grpc_max_recv_message_size: 16777216
|
|
containerd_grpc_max_send_message_size: 16777216
|
|
|
|
containerd_debug_level: "info"
|
|
|
|
containerd_metrics_address: ""
|
|
|
|
containerd_metrics_grpc_histogram: false
|
|
|
|
containerd_registries:
|
|
"docker.io": "https://registry-1.docker.io"
|
|
|
|
containerd_max_container_log_line_size: -1
|
|
|
|
containerd_cfg_dir: /etc/containerd
|
|
|
|
# Extra config to be put in {{ containerd_cfg_dir }}/config.toml literally
|
|
containerd_extra_args: ''
|
|
|
|
# Configure registry auth (if applicable to secure/insecure registries)
|
|
containerd_registry_auth: []
|
|
# - registry: 10.0.0.2:5000
|
|
# username: user
|
|
# password: pass
|
|
|
|
# Configure containerd service
|
|
containerd_limit_proc_num: "infinity"
|
|
containerd_limit_core: "infinity"
|
|
containerd_limit_open_file_num: "infinity"
|
|
containerd_limit_mem_lock: "infinity"
|