Utilize bjw-s's common Helm library. #13

Merged
konrad merged 41 commits from :new-helm-chart into main 2023-11-07 14:47:24 +00:00
Showing only changes of commit 4136286a1a - Show all commits

View File

@ -22,6 +22,21 @@ persistence:
mountPath: /etc/vikunja/config.yml
subPath: config.yml
probes:
liveness: &probes
enabled: true
custom: true
spec:
httpGet:
path: /api/v1
konrad marked this conversation as resolved Outdated

Shouldn't this use /api/v1/info as /api/v1 will usually give an error?

Shouldn't this use `/api/v1/info` as `/api/v1` will usually give an error?

LOL, I've gotta say, that explains a lot about my own Vikunja deployment after realizing that /api/v1 returns a 401...

fixed!

LOL, I've gotta say, that explains a lot about my own Vikunja deployment after realizing that `/api/v1` returns a `401`... fixed!
https://kolaente.dev/vikunja/helm-chart/commit/61b8892ff0aa802e33c40656e27caa6105b48881

hehe yeah there's an item in the backlog to add a health endpoint eventually which would also check if the db connection works etc.

hehe yeah there's an item in the backlog to add a `health` endpoint eventually which would also check if the db connection works etc.
port: http
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
readiness: *probes
startup:
enabled: false
env:
{{ if .Values.redis.enabled }}