Skip to content
Snippets Groups Projects
Commit 0936ab65 authored by OZGCloud's avatar OZGCloud
Browse files

increase startup probe time

parent 7bf310bd
Branches
Tags
No related merge requests found
......@@ -152,8 +152,8 @@ spec:
path: /q/health/started
port: 8080
scheme: HTTP
initialDelaySeconds: 15
periodSeconds: 5
initialDelaySeconds: 30
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
{{- if .Values.enableLivenessProbe }}
......
......@@ -60,3 +60,34 @@ tests:
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 5
- it: should have readiness probe
template: deployment.yaml
asserts:
- isSubset:
path: spec.template.spec.containers[0].readinessProbe
content:
failureThreshold: 3
httpGet:
path: /q/health/ready
port: 8080
scheme: HTTP
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 3
- it: should have startup probe
template: deployment.yaml
asserts:
- isSubset:
path: spec.template.spec.containers[0].startupProbe
content:
failureThreshold: 10
httpGet:
path: /q/health/started
port: 8080
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment