Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable hub livenessProbe by default and relax hub/proxy probes #1941

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions jupyterhub/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,16 +109,22 @@ hub:
templatePaths: []
templateVars: {}
livenessProbe:
# The livenessProbe's aim to give JupyterHub sufficient time to startup but
# be able to restart if it becomes unresponsive for ~5 min.
enabled: false
initialDelaySeconds: 180
initialDelaySeconds: 300
periodSeconds: 10
failureThreshold: 3
timeoutSeconds: 1
failureThreshold: 30
timeoutSeconds: 3
readinessProbe:
# The readinessProbe's aim is to provide a successful startup indication,
# but following that never become unready before its livenessProbe fail and
# restarts it if needed. To become unready following startup serves no
# purpose as there are no other pod to fallback to in our non-HA deployment.
enabled: true
initialDelaySeconds: 0
periodSeconds: 2
manics marked this conversation as resolved.
Show resolved Hide resolved
failureThreshold: 3
failureThreshold: 1000
timeoutSeconds: 1
existingSecret:

Expand Down Expand Up @@ -189,6 +195,7 @@ proxy:
enabled: true
initialDelaySeconds: 0
periodSeconds: 2
failureThreshold: 1000
resources:
requests:
cpu: 200m
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.