From 5d8c4c0e2834025615d6f608d4177992e9304561 Mon Sep 17 00:00:00 2001 From: jyje Date: Sun, 9 Mar 2025 11:47:28 +0900 Subject: [PATCH] feat(charts/open-webui): Fix probes --- charts/open-webui/values-rag-milvus.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/charts/open-webui/values-rag-milvus.yaml b/charts/open-webui/values-rag-milvus.yaml index a76486f..64745c3 100644 --- a/charts/open-webui/values-rag-milvus.yaml +++ b/charts/open-webui/values-rag-milvus.yaml @@ -44,3 +44,10 @@ readinessProbe: httpGet: path: /health/db port: http +startupProbe: + httpGet: + path: /health + port: http + initialDelaySeconds: 30 # Adjust this value according to the startup time of the application + periodSeconds: 10 # Adjust this value according to the startup time of the application + failureThreshold: 20 # Adjust this value according to the startup time of the application