From d1b4445d209e0f4a4c8c810ee4e2a1af7ab576d3 Mon Sep 17 00:00:00 2001 From: Vincent SELLIER <vincent.sellier@softwareheritage.org> Date: Tue, 16 Jan 2024 16:12:18 +0100 Subject: [PATCH] swh/memcached: Force quoting of the container arguments Related to swh/infra/sysadm-environment#5212 --- swh/templates/memcached/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swh/templates/memcached/deployment.yaml b/swh/templates/memcached/deployment.yaml index b76f17e9d..276eac21b 100644 --- a/swh/templates/memcached/deployment.yaml +++ b/swh/templates/memcached/deployment.yaml @@ -32,7 +32,7 @@ spec: image: "{{ .Values.memcached.image }}" args: - -m - - {{ .Values.memcached.memory }} + - {{ .Values.memcached.memory | quote }} imagePullPolicy: IfNotPresent resources: requests: -- GitLab