From 2dc7be38693310484b7eaf61f0b4e85b167bceef Mon Sep 17 00:00:00 2001 From: Jakob Stadlhuber Date: Wed, 24 Jul 2024 19:38:54 +0200 Subject: [PATCH] Remove liveness and readiness probes from worker.yaml This commit removes the liveness and readiness probes configuration from the Kubernetes worker manifest. Additionally, a Service definition for the worker application has been removed. These changes might be necessary to update the deployment strategy or simplify the configuration. --- .../kubernetes/cluster-install/worker.yaml | 30 ------------------- 1 file changed, 30 deletions(-) diff --git a/examples/kubernetes/cluster-install/worker.yaml b/examples/kubernetes/cluster-install/worker.yaml index 6185f991..8e992cf1 100644 --- a/examples/kubernetes/cluster-install/worker.yaml +++ b/examples/kubernetes/cluster-install/worker.yaml @@ -24,33 +24,3 @@ spec: name: firecrawl-config #- secretRef: # name: firecrawl-secret - livenessProbe: - httpGet: - path: /v0/health/liveness - port: 3003 - initialDelaySeconds: 30 - periodSeconds: 30 - timeoutSeconds: 5 - successThreshold: 1 - failureThreshold: 3 - readinessProbe: - httpGet: - path: /v0/health/readiness - port: 3003 - initialDelaySeconds: 30 - periodSeconds: 30 - timeoutSeconds: 5 - successThreshold: 1 - failureThreshold: 3 ---- -apiVersion: v1 -kind: Service -metadata: - name: worker -spec: - selector: - app: worker - ports: - - protocol: TCP - port: 3003 - targetPort: 3003