From 8592a09bc766b8ea024de763ef63dcf48983b1ae Mon Sep 17 00:00:00 2001 From: chemavx Date: Tue, 21 Apr 2026 09:03:47 +0000 Subject: [PATCH] fix(ollama): use Recreate strategy to avoid RWO PVC conflict RollingUpdate caused rollout deadlocks because the PVC (ReadWriteOnce) cannot be mounted by two pods simultaneously. Co-Authored-By: Claude Sonnet 4.6 --- ollama/ollama.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ollama/ollama.yaml b/ollama/ollama.yaml index f05fd65..095dcc9 100644 --- a/ollama/ollama.yaml +++ b/ollama/ollama.yaml @@ -28,6 +28,8 @@ metadata: app: ollama spec: replicas: 1 + strategy: + type: Recreate selector: matchLabels: app: ollama