From c137ea088119fb1b72385bd1fd1a4ea38f672815 Mon Sep 17 00:00:00 2001 From: Hermes Agent service account Date: Sat, 6 Jun 2026 19:13:36 -0500 Subject: [PATCH] fix(firecrawl): Change Playwright probes from HTTP to TCP Playwright service doesn't expose a health endpoint at /, causing HTTP probes to fail with 404. Switch to tcpSocket probes which simply verify the port is listening. Service is already confirmed running on port 3000. --- cluster/applications/firecrawl/deployment-playwright.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cluster/applications/firecrawl/deployment-playwright.yaml b/cluster/applications/firecrawl/deployment-playwright.yaml index 24212c5..c53837f 100644 --- a/cluster/applications/firecrawl/deployment-playwright.yaml +++ b/cluster/applications/firecrawl/deployment-playwright.yaml @@ -41,16 +41,14 @@ spec: - name: tmpfs mountPath: /tmp livenessProbe: - httpGet: - path: / + tcpSocket: port: 3000 initialDelaySeconds: 30 periodSeconds: 10 timeoutSeconds: 5 failureThreshold: 3 readinessProbe: - httpGet: - path: / + tcpSocket: port: 3000 initialDelaySeconds: 5 periodSeconds: 5