wekan / charts

Wekan Helm Charts to deploy to Kubernetes
MIT License
2 stars 15 forks source link

Readiness/liveliness probes fail when using subpath #30

Closed emoritzx closed 1 month ago

emoritzx commented 8 months ago

When configuring the Helm values to run wekan under a subpath, the readiness and liveliness probes are still configured to call the root path /. This returns a 404 Not Found and results in the probe(s) failing, which ultimately results in Kubernetes killing the pod.

Relevent config:

# values.yml
endpoint: my.website.com
root_url: https://my.website.com/wekan
ingress:
  path: /wekan
  hosts: [ my.website.com ]

When I manually updated the deployment to set the readiness/liveliness probe URL to /wekan, then everything worked.