fix(helm chart): startup of IFC import service is faster (#5701)
- we have a startup probe, so liveness and readiness should not wait for a minute before starting - the startup probe can be more frequent, polling every 5s for up to 180s
This commit is contained in:
@@ -35,15 +35,14 @@ spec:
|
|||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
|
||||||
startupProbe:
|
startupProbe:
|
||||||
periodSeconds: 10
|
periodSeconds: 5
|
||||||
failureThreshold: 18 # 10 * 18 = 180s to startup
|
failureThreshold: 36 # 5 * 36 = 180s to startup
|
||||||
timeoutSeconds: 3
|
timeoutSeconds: 3
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /healthz
|
path: /healthz
|
||||||
port: 9080
|
port: 9080
|
||||||
|
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
initialDelaySeconds: 60
|
|
||||||
periodSeconds: 60
|
periodSeconds: 60
|
||||||
timeoutSeconds: 3
|
timeoutSeconds: 3
|
||||||
httpGet:
|
httpGet:
|
||||||
@@ -51,7 +50,6 @@ spec:
|
|||||||
port: 9080
|
port: 9080
|
||||||
|
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
initialDelaySeconds: 60
|
|
||||||
periodSeconds: 10
|
periodSeconds: 10
|
||||||
timeoutSeconds: 3
|
timeoutSeconds: 3
|
||||||
httpGet:
|
httpGet:
|
||||||
|
|||||||
Reference in New Issue
Block a user