From 61a16f3d29361d0ee390ee0a2a4c46483ef69382 Mon Sep 17 00:00:00 2001 From: Iain Sproat <68657+iainsproat@users.noreply.github.com> Date: Tue, 7 Oct 2025 17:46:03 +0100 Subject: [PATCH] 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 --- .../templates/ifc_import_service/deployment.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/utils/helm/speckle-server/templates/ifc_import_service/deployment.yml b/utils/helm/speckle-server/templates/ifc_import_service/deployment.yml index 7f5704ea3..14f3ae3e6 100644 --- a/utils/helm/speckle-server/templates/ifc_import_service/deployment.yml +++ b/utils/helm/speckle-server/templates/ifc_import_service/deployment.yml @@ -35,15 +35,14 @@ spec: protocol: TCP startupProbe: - periodSeconds: 10 - failureThreshold: 18 # 10 * 18 = 180s to startup + periodSeconds: 5 + failureThreshold: 36 # 5 * 36 = 180s to startup timeoutSeconds: 3 httpGet: path: /healthz port: 9080 livenessProbe: - initialDelaySeconds: 60 periodSeconds: 60 timeoutSeconds: 3 httpGet: @@ -51,7 +50,6 @@ spec: port: 9080 readinessProbe: - initialDelaySeconds: 60 periodSeconds: 10 timeoutSeconds: 3 httpGet: