do: configure vikunja mail sending
This commit is contained in:
parent
5d84758480
commit
d972e829d0
|
@ -15,6 +15,9 @@ spec:
|
|||
namespace: flux-system
|
||||
interval: 5m
|
||||
valuesFrom:
|
||||
- kind: ConfigMap
|
||||
name: stackspin-vikunja-values
|
||||
optional: false
|
||||
- kind: ConfigMap
|
||||
name: stackspin-vikunja-test-values
|
||||
optional: false
|
||||
|
|
|
@ -27,18 +27,15 @@ data:
|
|||
authurl: "https://sso.${domain}/"
|
||||
clientid: "${client_id}"
|
||||
clientsecret: "${client_secret}"
|
||||
local:
|
||||
enabled: false
|
||||
service:
|
||||
frontendurl: "https://do-test.${domain}"
|
||||
motd: "Please allow public profile discovery in settings!"
|
||||
timezone: "CET"
|
||||
database:
|
||||
type: postgres
|
||||
host: vikunja-test-postgresql
|
||||
password: "${postgresql_password}"
|
||||
log:
|
||||
path: "/app/vikunja"
|
||||
http: stdout
|
||||
database: stderr
|
||||
databaselevel: debug
|
||||
ingress:
|
||||
|
@ -49,7 +46,6 @@ data:
|
|||
kubernetes.io/tls-acme: "true"
|
||||
hosts:
|
||||
- host: "do-test.${domain}"
|
||||
# TODO Helm template rather than repetition in every file? See https://github.com/k8s-at-home/library-charts/blob/4d09a8ddbdf11c278101b74b36720b5f7c17cd71/charts/stable/common/values.yaml#L342
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
|
@ -58,7 +54,6 @@ data:
|
|||
hosts:
|
||||
- "do-test.${domain}"
|
||||
caddy:
|
||||
# TODO is caddy needed at all?
|
||||
noTls: true
|
||||
postgresql:
|
||||
enabled: true
|
||||
|
|
|
@ -29,6 +29,14 @@ data:
|
|||
clientsecret: "${client_secret}"
|
||||
local:
|
||||
enabled: false
|
||||
mailer:
|
||||
enabled: "${outgoing_mail_enabled}"
|
||||
host: "${outgoing_mail_smtp_host}"
|
||||
port: "${outgoing_mail_smtp_port}"
|
||||
username: "${outgoing_mail_smtp_user}"
|
||||
password: "${outgoing_mail_smtp_password}"
|
||||
fromemail: "${outgoing_mail_smtp_from_address}"
|
||||
forcessl: true
|
||||
service:
|
||||
frontendurl: "https://do.${domain}"
|
||||
motd: "Please allow public profile discovery in settings!"
|
||||
|
|
Loading…
Reference in New Issue