File tree Expand file tree Collapse file tree 1 file changed +2
-15
lines changed
drydock/templates/drydock/k8s/lifecycle Expand file tree Collapse file tree 1 file changed +2
-15
lines changed Original file line number Diff line number Diff line change @@ -13,25 +13,12 @@ spec:
13
13
command :
14
14
- " sleep"
15
15
- " 30"
16
- startupProbe : # Make sure the service has started correctly
17
- # We provide 10 * 5 seconds to the service to start before restarting the pod
18
- successThreshold : 1
19
- failureThreshold : 10
20
- initialDelaySeconds : 5
21
- timeoutSeconds : 3
22
- periodSeconds : 5
23
- httpGet :
24
- path : /heartbeat
25
- port : 8000
26
- httpHeaders :
27
- - name : Host
28
- value : {{ LMS_HOST }}
29
16
readinessProbe : # Make sure the pod can answer traffic before handling any requests
30
17
# Only route traffic if the pod is alive, and has passed two succesful checks (max 10s)
31
18
successThreshold : 2
32
19
failureThreshold : 2
33
- periodSeconds : 5
34
- timeoutSeconds : 3
20
+ periodSeconds : 10
21
+ timeoutSeconds : 5
35
22
httpGet :
36
23
path : /heartbeat
37
24
port : 8000
You can’t perform that action at this time.
0 commit comments