vikunja: add postgres database config
This commit is contained in:
parent
09d3076a3f
commit
f2195b5f60
|
@ -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
|
||||||
|
|
|
@ -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