From c5509cee7a03519116d30d48d38ed886b2f726f8 Mon Sep 17 00:00:00 2001 From: Deep Koluguri Date: Sun, 21 Jun 2026 11:19:40 -0400 Subject: [PATCH] Remove Temporal worker container to prevent crashlooping --- k8s/agents-api.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/k8s/agents-api.yaml b/k8s/agents-api.yaml index c2df6c0..8c1830b 100644 --- a/k8s/agents-api.yaml +++ b/k8s/agents-api.yaml @@ -38,16 +38,6 @@ spec: volumeMounts: - name: app-volume mountPath: /app - - name: worker - image: python:3.11-slim - workingDir: /app - command: ["sh", "-c", "pip install -r requirements.txt && python -m src.worker"] - env: - - name: PYTHONPATH - value: "/app" - volumeMounts: - - name: app-volume - mountPath: /app volumes: - name: app-volume emptyDir: {}