From 8b1bdfff971aa3606c0d6b02f21f0b916e858c52 Mon Sep 17 00:00:00 2001 From: Mikolaj Izdebski Date: Thu, 24 Apr 2025 07:27:31 +0200 Subject: [PATCH] Koschei: relax probe timeouts Extended the liveness/readiness probe timeouts to better handle unexpected database slowdowns. This aims to reduce the frequency of Pod crash loops by giving the system more time to recover before Kubernetes restarts it. --- .../openshift-apps/koschei/templates/frontend-deployment.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/openshift-apps/koschei/templates/frontend-deployment.yml b/roles/openshift-apps/koschei/templates/frontend-deployment.yml index a98d50d14b..6f1ea57370 100644 --- a/roles/openshift-apps/koschei/templates/frontend-deployment.yml +++ b/roles/openshift-apps/koschei/templates/frontend-deployment.yml @@ -36,13 +36,13 @@ spec: cpu: 3000m memory: 3072Mi readinessProbe: - timeoutSeconds: 5 + timeoutSeconds: 10 initialDelaySeconds: 5 httpGet: path: /collections port: 8080 livenessProbe: - timeoutSeconds: 5 + timeoutSeconds: 10 initialDelaySeconds: 30 httpGet: path: /collections