From 08d76ded6fbe491c689a232b37b5adb85d8e7934 Mon Sep 17 00:00:00 2001
From: gifrerenom <lluis.gifre@cttc.es>
Date: Mon, 24 Mar 2025 15:57:14 +0000
Subject: [PATCH] Manifests:

- Relaxed readiness and liveness probe failure thresholds
---
 manifests/nbiservice.yaml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/manifests/nbiservice.yaml b/manifests/nbiservice.yaml
index 2bf31678f..bc1882e22 100644
--- a/manifests/nbiservice.yaml
+++ b/manifests/nbiservice.yaml
@@ -51,16 +51,16 @@ spec:
             httpGet:
               path: /healthz
               port: 8080
-            initialDelaySeconds: 30   # NBI's gunicorn takes 30~40 seconds to bootstrap
+            initialDelaySeconds: 50   # NBI's gunicorn takes 30~40 seconds to bootstrap
             periodSeconds: 10
-            failureThreshold: 6
+            failureThreshold: 10
           livenessProbe:
             httpGet:
               path: /healthz
               port: 8080
-            initialDelaySeconds: 30   # NBI's gunicorn takes 30~40 seconds to bootstrap
+            initialDelaySeconds: 50   # NBI's gunicorn takes 30~40 seconds to bootstrap
             periodSeconds: 10
-            failureThreshold: 6
+            failureThreshold: 10
           resources:
             requests:
               cpu: 150m
-- 
GitLab