From 5ee8309d327b4e2b46519cc7a786df65c7731b6e Mon Sep 17 00:00:00 2001 From: Hermes Agent service account Date: Mon, 31 Aug 2026 22:52:45 -0500 Subject: [PATCH] Remove readiness probe (too aggressive); keep liveness probe --- cluster/applications/body-wars/deployment.yaml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/cluster/applications/body-wars/deployment.yaml b/cluster/applications/body-wars/deployment.yaml index b50c850..57985b7 100644 --- a/cluster/applications/body-wars/deployment.yaml +++ b/cluster/applications/body-wars/deployment.yaml @@ -72,20 +72,12 @@ spec: memory: 1Gi livenessProbe: httpGet: - path: /api/v1/models + path: /health port: http initialDelaySeconds: 30 periodSeconds: 10 timeoutSeconds: 5 failureThreshold: 3 - readinessProbe: - httpGet: - path: /health - port: http - initialDelaySeconds: 10 - periodSeconds: 5 - timeoutSeconds: 3 - failureThreshold: 2 volumeMounts: - name: data mountPath: /app/backend/data