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

Add example smtp config for helm chart in values.yaml

This commit is contained in:
Roman T 2025-06-17 15:04:54 +07:00 committed by GitHub
parent c8cb1f4a20
commit 21b069c776
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"