Configure Mesh SMTP settings

This commit is contained in:
Joel DeTeves 2022-01-10 13:16:09 -08:00
parent c45c8b9eeb
commit 948942de09
2 changed files with 16 additions and 0 deletions

View File

@ -47,6 +47,21 @@ spec:
value: tactical-nlb
- name: WS_MASK_OVERRIDE # Enable for Traefik compatibility
value: "0"
- name: SMTP_HOST
value: smtp.example.com
- name: SMTP_PORT
value: "587"
- name: SMTP_FROM
value: mesh@example.com
- name: SMTP_USER
value: mesh@example.com
- name: SMTP_PASS
valueFrom:
secretKeyRef:
name: tactical-secrets
key: mesh-smtp-password
- name: SMTP_TLS
value: "false"
volumeMounts:
- mountPath: /opt/tactical
name: tactical-data

View File

@ -12,5 +12,6 @@ data:
# Default password: changeme
trmm-password: Y2hhbmdlbWU=
mesh-password: Y2hhbmdlbWU=
mesh-smtp-password: Y2hhbmdlbWU=
mongodb-password: Y2hhbmdlbWU=
postgres-password: Y2hhbmdlbWU=