We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a11a27 commit d36dadcCopy full SHA for d36dadc
k8s/deployment.yaml
@@ -44,10 +44,18 @@ spec:
44
path: /ping
45
port: 8080
46
initialDelaySeconds: 15
47
- periodSeconds: 10
+ periodSeconds: 15
48
readinessProbe: # checks whether the container is ready to receive traffic
49
httpGet:
50
51
52
initialDelaySeconds: 5
53
periodSeconds: 5
54
+ startupProbe: # hold off liveness and readiness probes until container is started
55
+ httpGet:
56
+ path: /ping
57
+ port: 8080
58
+ initialDelaySeconds: 10
59
+ periodSeconds: 10
60
+ failureThreshold: 10
61
+ failure
0 commit comments