do: log to file instead of stdout
This commit is contained in:
parent
499b5205bd
commit
2537ea309e
|
@ -36,7 +36,8 @@ data:
|
||||||
host: vikunja-postgresql
|
host: vikunja-postgresql
|
||||||
password: "${postgresql_password}"
|
password: "${postgresql_password}"
|
||||||
log:
|
log:
|
||||||
database: stdout
|
http: file
|
||||||
|
database: file
|
||||||
databaselevel: debug
|
databaselevel: debug
|
||||||
ingress:
|
ingress:
|
||||||
main:
|
main:
|
||||||
|
@ -46,15 +47,7 @@ data:
|
||||||
kubernetes.io/tls-acme: "true"
|
kubernetes.io/tls-acme: "true"
|
||||||
hosts:
|
hosts:
|
||||||
- host: "do.${domain}"
|
- host: "do.${domain}"
|
||||||
# Helm template rather than repitition? See https://github.com/k8s-at-home/library-charts/blob/4d09a8ddbdf11c278101b74b36720b5f7c17cd71/charts/stable/common/values.yaml#L342
|
# 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
|
|
||||||
- host: "du.${domain}"
|
|
||||||
paths:
|
|
||||||
- path: /
|
|
||||||
pathType: Prefix
|
|
||||||
- host: "tasks.${domain}"
|
|
||||||
paths:
|
paths:
|
||||||
- path: /
|
- path: /
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
|
@ -62,8 +55,6 @@ data:
|
||||||
- secretName: vikunja-tls
|
- secretName: vikunja-tls
|
||||||
hosts:
|
hosts:
|
||||||
- "do.${domain}"
|
- "do.${domain}"
|
||||||
- "du.${domain}"
|
|
||||||
- "tasks.${domain}"
|
|
||||||
caddy:
|
caddy:
|
||||||
# TODO is caddy needed at all?
|
# TODO is caddy needed at all?
|
||||||
noTls: true
|
noTls: true
|
||||||
|
|
Loading…
Reference in New Issue