You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
315 B
11 lines
315 B
3 years ago
|
{{- if (include "postfix.createConfigmap" .) }}
|
||
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: {{ include "postfix.fullname" . }}
|
||
|
namespace: {{ .Release.Namespace | quote }}
|
||
|
labels: {{- include "postfix.labels" . | nindent 4 }}
|
||
|
data:
|
||
|
postfix.cf: |-
|
||
|
{{ .Values.postfix.configuration | indent 4 }}
|
||
|
{{- end -}}
|