Skip to content
Snippets Groups Projects
Verified Commit 13e9da18 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

fix: correct volume definition

parent 59da9134
No related branches found
No related tags found
No related merge requests found
Pipeline #2730 passed
......@@ -29,9 +29,9 @@ spec:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
volumes:
- name: data
{{- toYaml .Values.volumes.data | nindent 10 }}
{{- .Values.volumes.data | nindent 10 }}
- name: dkim
{{- toYaml .Values.volumes.dkim | nindent 10 }}
{{- .Values.volumes.dkim | nindent 10 }}
- name: config
configMap:
name: {{ include "mailu-helm.fullname" . }}-admin
......
......@@ -29,9 +29,9 @@ spec:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
volumes:
- name: filter
{{- toYaml .Values.volumes.filter | nindent 10 }}
{{- .Values.volumes.filter | nindent 10 }}
- name: dkim
{{- toYaml .Values.volumes.dkim | nindent 10 }}
{{- .Values.volumes.dkim | nindent 10 }}
- name: config
secret:
secretName: {{ include "mailu-helm.fullname" . }}-antispam
......
......@@ -29,9 +29,9 @@ spec:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
volumes:
- name: data
{{- toYaml .Values.volumes.data | nindent 10 }}
{{- .Values.volumes.data | nindent 10 }}
- name: mail
{{- toYaml .Values.volumes.mail | nindent 10 }}
{{- .Values.volumes.mail | nindent 10 }}
containers:
- name: imap
securityContext:
......
......@@ -29,7 +29,7 @@ spec:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
volumes:
- name: data
{{- toYaml .Values.volumes.data | nindent 10 }}
{{- .Values.volumes.data | nindent 10 }}
- name: certs
secret:
secretName: {{ include "mailu-helm.fullname" . }}-tls
......
......@@ -29,7 +29,7 @@ spec:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
volumes:
- name: webdav
{{- toYaml .Values.volumes.webdav | nindent 10 }}
{{- .Values.volumes.webdav | nindent 10 }}
containers:
- name: webdav
securityContext:
......
......@@ -50,15 +50,15 @@ certificate:
- "mail.example.com"
volumes:
dkim:
dkim: |-
emptyDir: {}
data:
data: |-
emptyDir: {}
mail:
mail: |-
emptyDir: {}
filter:
filter: |-
emptyDir: {}
webdav:
webdav: |-
emptyDir: {}
front:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment