From 802241ec4968015f5788191b2a5306e2eee9f8a4 Mon Sep 17 00:00:00 2001 From: Antigravity Date: Tue, 19 May 2026 23:21:39 -0400 Subject: [PATCH] fix: use /health/readiness probe to bypass 401 --- ai-core/litellm/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ai-core/litellm/deployment.yaml b/ai-core/litellm/deployment.yaml index b139e60..bca995b 100644 --- a/ai-core/litellm/deployment.yaml +++ b/ai-core/litellm/deployment.yaml @@ -52,7 +52,7 @@ spec: value: "True" livenessProbe: httpGet: - path: /health + path: /health/readiness port: 4000 initialDelaySeconds: 30 periodSeconds: 20 @@ -60,7 +60,7 @@ spec: failureThreshold: 3 readinessProbe: httpGet: - path: /health + path: /health/readiness port: 4000 initialDelaySeconds: 10 periodSeconds: 10