Skip to content

Commit

Permalink
feat: add SMTP sender email env var and smtp brand name (#28)
Browse files Browse the repository at this point in the history
* feat: adding SMTP sender email env var

* feat: added brand name value to chart, used in emeails

* refactor: rename variable used in smtp with proper prefix
  • Loading branch information
RafaelOAiSquared authored May 30, 2024
1 parent 572f9e8 commit 8b26ed4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/multiwoven/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: multiwoven
description: Open-source reverse ETL, an alternative to Hightouch, Census etc. 🔥
type: application
version: 0.16.0
appVersion: "0.16.0"
version: 0.17.0
appVersion: "0.17.0"
maintainers:
- name: subintp
- name: RafaelOAiSquared
Expand Down
2 changes: 2 additions & 0 deletions charts/multiwoven/templates/multiwoven-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ data:
APP_REVISION: {{ .Values.multiwovenConfig.appRevision | quote }}
APPSIGNAL_APP_ENV: {{ .Values.multiwovenConfig.appEnv | quote }}
APPSIGNAL_PUSH_API_KEY: {{ .Values.multiwovenConfig.appsignalPushApiKey | quote }}
BRAND_NAME: {{ .Values.multiwovenConfig.smtpBrandName | quote }}
DATABRICKS_DRIVER_PATH: {{ .Values.multiwovenConfig.databricksDriverPath | quote }}
DB_HOST: {{ .Values.multiwovenConfig.dbHost | quote }}
DB_PASSWORD: {{ .Values.multiwovenConfig.dbPassword | quote }}
Expand All @@ -25,6 +26,7 @@ data:
SMTP_PASSWORD: {{ .Values.multiwovenConfig.smtpPassword | quote }}
SMTP_PORT: {{ .Values.multiwovenConfig.smtpPort | quote }}
SMTP_USERNAME: {{ .Values.multiwovenConfig.smtpUsername | quote }}
SMTP_SENDER_EMAIL: {{ .Values.multiwovenConfig.smtpSenderEmail | quote }}
SNOWFLAKE_DRIVER_PATH: {{ .Values.multiwovenConfig.snowflakeDriverPath | quote }}
SYNC_EXTRACTOR_BATCH_SIZE: {{ .Values.multiwovenConfig.syncExtractorBatchSize | quote }}
SYNC_EXTRACTOR_THREAD_POOL_SIZE: {{ .Values.multiwovenConfig.syncExtractorThreadPoolSize | quote }}
Expand Down
2 changes: 2 additions & 0 deletions charts/multiwoven/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ multiwovenConfig:
railsLogLevel: info
registrySecretName: mwregistrysecret
smtpAddress: smtp.yourdomain.com
smtpBrandName: Multiwoven
smtpHost: yourdomain.com
smtpPassword: yourpassword
smtpPort: "587"
smtpUsername: yourusername
smtpSenderEmail: [email protected]
snowflakeDriverPath: /usr/lib/snowflake/odbc/lib/libSnowflake.so
syncExtractorBatchSize: "1000"
syncExtractorThreadPoolSize: "10"
Expand Down

0 comments on commit 8b26ed4

Please sign in to comment.