Upgrade Dawarich with SMTP settings#2325
Conversation
Update Dawarich web and Sidekiq to 1.7.8. Add SMTP relay configuration for Dawarich mailers and digest jobs using the existing relay secret, and keep Authentik-only login by setting ALLOW_EMAIL_PASSWORD_LOGIN=false.
There was a problem hiding this comment.
Pull request overview
This PR updates the Kubernetes manifests for the Dawarich app to deploy Dawarich v1.7.8 and adds SMTP relay configuration so mailers/digest jobs can send email via the existing relay secret, while keeping Authentik-only login by disabling email/password login.
Changes:
- Bump Dawarich image for both web and Sidekiq deployments from
1.7.7to1.7.8. - Introduce a new
ExternalSecret(dawarich-smtp) that sourcesSMTP_PASSWORDfrom the existingsmtp-relaysecret. - Configure SMTP-related environment variables for web + Sidekiq, and set
ALLOW_EMAIL_PASSWORD_LOGIN=falsefor web.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| kubernetes/dawarich/externalsecret.yaml | Adds dawarich-smtp ExternalSecret to surface the relay password as SMTP_PASSWORD for Dawarich. |
| kubernetes/dawarich/deploy-web.yaml | Upgrades Dawarich web image to 1.7.8 and configures SMTP + disables email/password login. |
| kubernetes/dawarich/deploy-sidekiq.yaml | Upgrades Sidekiq image to 1.7.8 and configures SMTP for background jobs (e.g., digests). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
WalkthroughThis PR updates the Dawarich Kubernetes deployment manifests to support SMTP configuration. A new ExternalSecret pulls the SMTP password from a remote secret store, and both Sidekiq and web Deployments are updated with explicit SMTP environment variables, secret references, and container image bumps to 1.7.8. The web Deployment additionally disables email-password login. ChangesDawarich SMTP Configuration
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Update Dawarich web and Sidekiq to 1.7.8.
Add SMTP relay configuration for Dawarich mailers and digest jobs using the existing relay secret, and keep Authentik-only login by setting ALLOW_EMAIL_PASSWORD_LOGIN=false.