Browse Source

fix: missed double quotes in cri-o config (#10040)

pull/10025/head
Denis 1 year ago
committed by GitHub
parent
commit
29827711f1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/container-engine/cri-o/templates/crio.conf.j2

2
roles/container-engine/cri-o/templates/crio.conf.j2

@ -114,7 +114,7 @@ conmon = "{{ crio_conmon }}"
conmon_cgroup = "pod"
{% else %}
{% if kube_reserved is defined and kube_reserved|bool %}
conmon_cgroup = "{{ kube_reserved_cgroups_for_service_slice }}
conmon_cgroup = "{{ kube_reserved_cgroups_for_service_slice }}"
{% else %}
conmon_cgroup = "system.slice"
{% endif %}

Loading…
Cancel
Save