vikunja: add postgres database config

This commit is contained in:
xeruf 2022-07-11 22:16:55 +01:00
parent 09d3076a3f
commit f2195b5f60
2 changed files with 12 additions and 1 deletions

View File

@ -27,6 +27,10 @@ data:
frontendurl: "https://do.${domain}" frontendurl: "https://do.${domain}"
motd: "Please allow public profile discovery in settings!" motd: "Please allow public profile discovery in settings!"
timezone: "DE" timezone: "DE"
database:
host: db
type: postgres
password: "${postgres_password}"
ingress: ingress:
main: main:
enabled: true enabled: true
@ -42,9 +46,10 @@ data:
- secretName: vikunja-tls - secretName: vikunja-tls
hosts: hosts:
- "do.${domain}" - "do.${domain}"
- "tmpdo.${domain}"
additionalContainers: additionalContainers:
api: api:
image: vikunja/api:0.18.1 image: vikunja/api:0.18.1
frontend: frontend:
image: vikunja/frontend:0.18.2 image: vikunja/frontend:0.18.2
postgresql:
enabled: true

View File

@ -0,0 +1,6 @@
apiVersion: v1
kind: Secret
metadata:
name: stackspin-vikunja-variables
data:
postgres_password: "{{ 32 | generate_password | b64encode }}"