From 1fd1ee61c1e7ff147a6a76e1cf9c7d2652241443 Mon Sep 17 00:00:00 2001 From: Edward Cheng Date: Tue, 30 Jul 2024 02:03:44 +1000 Subject: [PATCH] fix volumes mounts --- infrastructures/logstash/base/values.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infrastructures/logstash/base/values.yaml b/infrastructures/logstash/base/values.yaml index d275e34..85fc83c 100644 --- a/infrastructures/logstash/base/values.yaml +++ b/infrastructures/logstash/base/values.yaml @@ -9,18 +9,18 @@ extraVolumes: - name: logstash-config-http hostPath: path: /mnt/nfs/AppData/logstash/config/http.conf - subPath: http.conf - readOnly: true + type: File - name: logstash-config-syslog hostPath: path: /mnt/nfs/AppData/logstash/config/syslog.conf - subPath: syslog.conf - readOnly: true + type: File extraVolumeMounts: - name: logstash-config-http mountPath: /bitnami/logstash/config/http.conf + readOnly: true - name: logstash-config-syslog mountPath: /bitnami/logstash/config/syslog.conf + readOnly: true containerPorts: - name: http containerPort: 8080