From 97ebe23b60c7f2ed7e1367134920424c7027ac4f Mon Sep 17 00:00:00 2001 From: Marcel Zapf Date: Thu, 11 Jan 2024 16:58:49 +0000 Subject: [PATCH] update deployment --- helm/templates/deployment.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index 691547d..652cf9e 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -29,10 +29,10 @@ spec: path: / port: http volumeMounts: - - name: config-volume + - name: nginx-config-volume mountPath: /etc/nginx/nginx.conf subPath: nginx.conf - - name: confd-volume + - name: nginx-vhostconfig-volume mountPath: /etc/nginx/conf.d {{- if .Values.configMap.enabled }} - name: config-volume @@ -43,10 +43,10 @@ spec: mountPath: {{ .mountPath }} {{- end }} volumes: - - name: config-volume + - name: nginx-config-volume configMap: name: nginx-conf - - name: confd-volume + - name: nginx-vhostconfig-volume configMap: name: nginx-confd {{- if .Values.configMap.enabled }}