dask / dask-kubernetes

Native Kubernetes integration for Dask
https://kubernetes.dask.org
BSD 3-Clause "New" or "Revised" License
312 stars 148 forks source link

feat: Add configurable liveness probe timeout #918

Closed bnaul closed 2 weeks ago

bnaul commented 3 weeks ago

Fixes #917

Plain helm install:

Liveness:      http-get http://:8080/healthz delay=0s timeout=1s period=10s #success=1 #failure=3

With --set livenessProbe.timeoutSeconds=5:

Liveness:      http-get http://:8080/healthz delay=0s timeout=5s period=10s #success=1 #failure=3
jacobtomlinson commented 2 weeks ago

Hmm it won't let me commit the suggestion to change it to 5. Could you update the PR?

bnaul commented 2 weeks ago

@jacobtomlinson done, plus updated the README