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:
Iain Sproat
2025-10-07 17:46:03 +01:00
committed by GitHub
parent 8328a0f885
commit 61a16f3d29
@@ -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: