mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-10 11:28:45 +00:00
14 lines
412 B
YAML
14 lines
412 B
YAML
{{- if .Values.app.mailer.secretName -}}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: "{{ .Values.app.mailer.secretName }}"
|
|
type: Opaque
|
|
data:
|
|
host: "{{ .Values.app.mailer.host | b64enc }}"
|
|
port: "{{ .Values.app.mailer.port | b64enc }}"
|
|
user: "{{ .Values.app.mailer.user | b64enc }}"
|
|
password: "{{ .Values.app.mailer.password | b64enc }}"
|
|
sender: "{{ .Values.app.mailer.sender | b64enc }}"
|
|
{{- end }}
|