Feat: add definition of `ignore_image_defined_volumes` in containerd cri plugin configuration
parent
1968db9a52
commit
c6d0b1fbeb
|
@ -61,6 +61,8 @@ containerd_registries_mirrors:
|
||||||
|
|
||||||
containerd_max_container_log_line_size: -1
|
containerd_max_container_log_line_size: -1
|
||||||
|
|
||||||
|
containerd_ignore_image_defined_volumes: false
|
||||||
|
|
||||||
# If enabled it will allow non root users to use port numbers <1024
|
# If enabled it will allow non root users to use port numbers <1024
|
||||||
containerd_enable_unprivileged_ports: false
|
containerd_enable_unprivileged_ports: false
|
||||||
# If enabled it will allow non root users to use icmp sockets
|
# If enabled it will allow non root users to use icmp sockets
|
||||||
|
|
|
@ -20,6 +20,7 @@ oom_score = {{ containerd_oom_score }}
|
||||||
|
|
||||||
[plugins]
|
[plugins]
|
||||||
[plugins."io.containerd.grpc.v1.cri"]
|
[plugins."io.containerd.grpc.v1.cri"]
|
||||||
|
ignore_image_defined_volumes = {{ containerd_ignore_image_defined_volumes }}
|
||||||
sandbox_image = "{{ pod_infra_image_repo }}:{{ pod_infra_image_tag }}"
|
sandbox_image = "{{ pod_infra_image_repo }}:{{ pod_infra_image_tag }}"
|
||||||
max_container_log_line_size = {{ containerd_max_container_log_line_size }}
|
max_container_log_line_size = {{ containerd_max_container_log_line_size }}
|
||||||
enable_unprivileged_ports = {{ containerd_enable_unprivileged_ports | lower }}
|
enable_unprivileged_ports = {{ containerd_enable_unprivileged_ports | lower }}
|
||||||
|
|
Loading…
Reference in New Issue