1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00

docs: Add example SMTP config using extraEnv in Helm (#1217)

This commit is contained in:
Roman T 2025-06-18 16:11:03 +03:00 committed by GitHub
parent 6988864808
commit b37fc61b12
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -213,3 +213,20 @@ oidc:
## key: key-inside-the-secret ## key: key-inside-the-secret
## ##
extraEnv: [] extraEnv: []
## Example extraEnv for configure SMTP
## extraEnv:
## - name: SMTP_HOST
## value: "your_smtp_server"
## - name: SMTP_PORT
## value: "587"
## - name: SMTP_USER
## value: "your_email@example.com"
## - name: SMTP_PASSWORD
## value: "your_password"
## - name: SMTP_FROM
## value: "your_email@example.com"
## - name: SMTP_NAME
## value: "your_name_or_login"
## - name: SMTP_SECURE
## value: "false"