From b10fb0bb7b9db6e071027e8a3555b3600de2ed09 Mon Sep 17 00:00:00 2001 From: Kavitha Thulasiraman Date: Mon, 9 Aug 2021 10:05:45 -0400 Subject: [PATCH] remove pv volume for hospath --- chart/templates/console/deployment.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/chart/templates/console/deployment.yaml b/chart/templates/console/deployment.yaml index 65f721c..38d99d5 100644 --- a/chart/templates/console/deployment.yaml +++ b/chart/templates/console/deployment.yaml @@ -86,5 +86,10 @@ spec: configMap: name: twistlock-console - name: syslog-socket + {{- if .Values.console.syslogPersistence.enabled}} + hostPath: + path: "/dev/log" + {{- else}} emptyDir: {} + {{- end}} -- GitLab