Skip to content

Commit

Permalink
Merge pull request #478 from GrahamDumpleton/probe-timeouts
Browse files Browse the repository at this point in the history
Increase startup/liveness probe timeouts and periods.
  • Loading branch information
GrahamDumpleton authored Jun 26, 2024
2 parents a2d49b0 + edf3f3f commit f24c8c2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,17 @@ spec:
drop: ["ALL"]
startupProbe:
initialDelaySeconds: 15
periodSeconds: 5
periodSeconds: 10
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 4
httpGet:
path: /healthz?probe=startup
port: 8080
livenessProbe:
initialDelaySeconds: 5
periodSeconds: 5
initialDelaySeconds: 15
periodSeconds: 30
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 3
httpGet:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,17 @@ spec:
drop: ["ALL"]
startupProbe:
initialDelaySeconds: 15
periodSeconds: 5
periodSeconds: 10
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 4
httpGet:
path: /healthz?probe=startup
port: 8080
livenessProbe:
initialDelaySeconds: 5
periodSeconds: 5
initialDelaySeconds: 15
periodSeconds: 30
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 3
httpGet:
Expand Down

0 comments on commit f24c8c2

Please sign in to comment.