Fix db conn

This commit is contained in:
dvirlabs 2025-08-24 05:41:39 +03:00
parent 30d13d31b2
commit de50f292aa

View File

@ -32,6 +32,7 @@ vikunja:
config.yml: | config.yml: |
service: service:
interface: "0.0.0.0" interface: "0.0.0.0"
port: 3456
database: database:
type: "postgres" type: "postgres"
host: "vikunja-postgresql.my-apps.svc.cluster.local" host: "vikunja-postgresql.my-apps.svc.cluster.local"
@ -50,3 +51,20 @@ vikunja:
enabled: true enabled: true
openid: openid:
enabled: false enabled: false
# override probes to a simpler TCP check
probes:
liveness:
enabled: true
spec:
tcpSocket:
port: 3456
initialDelaySeconds: 20
periodSeconds: 10
readiness:
enabled: true
spec:
tcpSocket:
port: 3456
initialDelaySeconds: 10
periodSeconds: 5