From 171d242c6fb311ef81db13508e7455cdb19fae88 Mon Sep 17 00:00:00 2001 From: Alejandro Garrido Mota Date: Thu, 30 Apr 2020 12:22:45 +0100 Subject: [PATCH] Increased SHM size by mounting a volume --- templates/values.yaml.tpl | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/templates/values.yaml.tpl b/templates/values.yaml.tpl index 04c258c..c7dadd6 100644 --- a/templates/values.yaml.tpl +++ b/templates/values.yaml.tpl @@ -116,6 +116,15 @@ controller: podAnnotations: {} nodeSelector: {} + extraVolumeMounts: + - name: shared-memory + mountPath: /dev/shm + + extraVolumes: + - name: shared-memory + emptyDir: + medium: Memory + defaultBackend: enabled: true