Updates keila app with new tls smtp config.

This commit is contained in:
2025-08-05 17:39:03 -07:00
parent 03c631d67f
commit b69344fae6
2 changed files with 8 additions and 7 deletions

View File

@@ -41,9 +41,9 @@ spec:
- name: MAILER_SMTP_PORT
value: "{{ .apps.keila.smtp.port }}"
- name: MAILER_ENABLE_SSL
value: {{ if eq .apps.keila.smtp.sslTlsOrStartTls "sslTls" }}"true"{{ else }}"false"{{ end }}
value: "{{ .apps.keila.smtp.tls }}"
- name: MAILER_ENABLE_STARTTLS
value: {{ if eq .apps.keila.smtp.sslTlsOrStartTls "startTls" }}"true"{{ else }}"false"{{ end }}
value: "{{ .apps.keila.smtp.startTls }}"
- name: MAILER_SMTP_USER
value: {{ .apps.keila.smtp.user }}
- name: MAILER_SMTP_PASSWORD

View File

@@ -15,11 +15,12 @@ defaultConfig:
disableRegistration: "true"
adminUser: admin@{{ .cloud.domain }}
smtp:
host: {{ .cloud.smtp.host }}
port: {{ .cloud.smtp.port }}
from: {{ .cloud.smtp.from }}
user: {{ .cloud.smtp.user }}
sslTlsOrStartTls: {{ .cloud.smtp.sslTlsOrStartTls }}
host: "{{ .cloud.smtp.host }}"
port: "{{ .cloud.smtp.port }}"
from: "{{ .cloud.smtp.from }}"
user: "{{ .cloud.smtp.user }}"
tls: {{ .cloud.smtp.tls }}
startTls: {{ .cloud.smtp.startTls }}
requiredSecrets:
- apps.keila.secretKeyBase
- apps.keila.dbPassword