From 29827711f1a414f6359f583b6e3ec4c52369f2f8 Mon Sep 17 00:00:00 2001
From: Denis <turbosnail@users.noreply.github.com>
Date: Mon, 8 May 2023 03:27:16 +0300
Subject: [PATCH] fix: missed double quotes in cri-o config (#10040)

---
 roles/container-engine/cri-o/templates/crio.conf.j2 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/roles/container-engine/cri-o/templates/crio.conf.j2 b/roles/container-engine/cri-o/templates/crio.conf.j2
index d209b2bef..177d2a3f5 100644
--- a/roles/container-engine/cri-o/templates/crio.conf.j2
+++ b/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 %}
-- 
GitLab