From 585ada795d2ab0f4193b7bf14d8e2cd0b524f639 Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Date: Thu, 12 Mar 2026 06:05:43 +0100 Subject: [PATCH] chore(gitops): configure SMTP secrets for backend and admin frontend --- apps/nxtgauge-admin-frontend/base/secret.yaml | 8 ++++---- apps/nxtgauge-backend/base/secret.yaml | 8 ++++++++ 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/apps/nxtgauge-admin-frontend/base/secret.yaml b/apps/nxtgauge-admin-frontend/base/secret.yaml index 819625e..7c627da 100644 --- a/apps/nxtgauge-admin-frontend/base/secret.yaml +++ b/apps/nxtgauge-admin-frontend/base/secret.yaml @@ -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" diff --git a/apps/nxtgauge-backend/base/secret.yaml b/apps/nxtgauge-backend/base/secret.yaml index d573c76..0bfd4c9 100644 --- a/apps/nxtgauge-backend/base/secret.yaml +++ b/apps/nxtgauge-backend/base/secret.yaml @@ -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"