added thresholds to readiness and liveness probes
This commit is contained in:
parent
6f4f98c091
commit
bf770cc05e
|
@ -53,14 +53,18 @@ spec:
|
|||
httpGet:
|
||||
path: /
|
||||
port: 8080
|
||||
initialDelaySeconds: 180
|
||||
initialDelaySeconds: 60
|
||||
periodSeconds: 5
|
||||
failureThreshold: 15
|
||||
successThreshold: 1
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /api/v2/version
|
||||
port: 8080
|
||||
initialDelaySeconds: 180
|
||||
periodSeconds: 5
|
||||
initialDelaySeconds: 120
|
||||
periodSeconds: 30
|
||||
failureThreshold: 3
|
||||
successThreshold: 1
|
||||
resources:
|
||||
{{ toYaml .resources | indent 12 }}
|
||||
{{- end }}
|
||||
|
|
Loading…
Reference in New Issue