chore(gitops): configure SMTP secrets for backend and admin frontend

This commit is contained in:
Ashwin Kumar 2026-03-12 06:05:43 +01:00
parent 201b5ceb25
commit 585ada795d
2 changed files with 12 additions and 4 deletions

View file

@ -5,10 +5,10 @@ metadata:
namespace: nxtgauge
type: Opaque
stringData:
MAIL_FROM: "REPLACE_ME"
MAIL_SMTP_HOST: "REPLACE_ME"
MAIL_FROM: "noreply@nxtgauge.com"
MAIL_SMTP_HOST: "mail.nxtgauge.com"
MAIL_SMTP_PORT: "587"
MAIL_SMTP_SECURE: "false"
MAIL_SMTP_STARTTLS: "true"
MAIL_SMTP_USER: "REPLACE_ME"
MAIL_SMTP_PASS: "REPLACE_ME"
MAIL_SMTP_USER: "noreply@nxtgauge.com"
MAIL_SMTP_PASS: "Nxtguage@1128"

View file

@ -12,3 +12,11 @@ stringData:
DATABASE_NAME: "nxtgauge"
DATABASE_URL: "postgresql://postgres:chandan2026%401@pg-postgresql.data.svc.cluster.local:5432/nxtgauge"
JWT_SECRET: "REPLACE_ME"
SMTP_HOST: "mail.nxtgauge.com"
SMTP_PORT: "587"
SMTP_USER: "noreply@nxtgauge.com"
SMTP_PASS: "Nxtguage@1128"
SMTP_FROM_NAME: "NXTGAUGE"
SMTP_FROM_EMAIL: "noreply@nxtgauge.com"
SMTP_SECURE: "false"
SMTP_REQUIRE_TLS: "true"