vikunja: add postgres database config
This commit is contained in:
parent
09d3076a3f
commit
f2195b5f60
|
@ -27,6 +27,10 @@ data:
|
|||
frontendurl: "https://do.${domain}"
|
||||
motd: "Please allow public profile discovery in settings!"
|
||||
timezone: "DE"
|
||||
database:
|
||||
host: db
|
||||
type: postgres
|
||||
password: "${postgres_password}"
|
||||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
|
@ -42,9 +46,10 @@ data:
|
|||
- secretName: vikunja-tls
|
||||
hosts:
|
||||
- "do.${domain}"
|
||||
- "tmpdo.${domain}"
|
||||
additionalContainers:
|
||||
api:
|
||||
image: vikunja/api:0.18.1
|
||||
frontend:
|
||||
image: vikunja/frontend:0.18.2
|
||||
postgresql:
|
||||
enabled: true
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: stackspin-vikunja-variables
|
||||
data:
|
||||
postgres_password: "{{ 32 | generate_password | b64encode }}"
|
Loading…
Reference in New Issue