Fix embedding worker CrashLoopBackOff -- set replicas to 0 #143

Merged
forgejo_admin merged 1 commit from 142-fix-embedding-worker-crashloopbackoff-se into main 2026-03-13 06:40:45 +00:00

Summary

Scale the embedding worker deployment to 0 replicas to stop CrashLoopBackOff. The worker depends on Ollama which is currently offline (GPU reclaimed), so the pod restarts indefinitely. Setting replicas to 0 preserves the deployment definition for future re-enablement.

Changes

  • k8s/embedding-worker.yaml: changed replicas: 1 to replicas: 0

Test Plan

  • Verify the pod stops restarting: kubectl get pods -n pal-e-docs -l app=pal-e-docs-embedding-worker should show no pods
  • Verify the deployment still exists: kubectl get deploy -n pal-e-docs pal-e-docs-embedding-worker

Review Checklist

  • Code change is a 1-line replica count update
  • No tests affected (k8s manifest only)
  • No migrations needed
## Summary Scale the embedding worker deployment to 0 replicas to stop CrashLoopBackOff. The worker depends on Ollama which is currently offline (GPU reclaimed), so the pod restarts indefinitely. Setting replicas to 0 preserves the deployment definition for future re-enablement. ## Changes - `k8s/embedding-worker.yaml`: changed `replicas: 1` to `replicas: 0` ## Test Plan - Verify the pod stops restarting: `kubectl get pods -n pal-e-docs -l app=pal-e-docs-embedding-worker` should show no pods - Verify the deployment still exists: `kubectl get deploy -n pal-e-docs pal-e-docs-embedding-worker` ## Review Checklist - [x] Code change is a 1-line replica count update - [x] No tests affected (k8s manifest only) - [x] No migrations needed ## Related - Closes #142
Fix embedding worker CrashLoopBackOff by scaling to 0 replicas
Some checks failed
ci/woodpecker/pr/woodpecker Pipeline failed
0c5f69677f
The embedding worker depends on Ollama which is currently offline
(GPU reclaimed for other workloads). Setting replicas to 0 stops
the CrashLoopBackOff without removing the deployment definition.

Closes #142

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
forgejo_admin deleted branch 142-fix-embedding-worker-crashloopbackoff-se 2026-03-13 06:40:45 +00:00
Sign in to join this conversation.
No description provided.