From e23012911945a7435893fd1dbd018dcef4e03def Mon Sep 17 00:00:00 2001 From: gilgamezh Date: Thu, 7 May 2026 10:03:16 +0200 Subject: [PATCH] build: use Recreate strategy for qbittorrent qbittorrent holds an exclusive lockfile on /config; rolling updates deadlock because the new pod can't acquire the lock until the old one is gone. --- custom_helm_charts/qbittorrent/templates/deployment.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/custom_helm_charts/qbittorrent/templates/deployment.yaml b/custom_helm_charts/qbittorrent/templates/deployment.yaml index 83c94b0..daad79c 100644 --- a/custom_helm_charts/qbittorrent/templates/deployment.yaml +++ b/custom_helm_charts/qbittorrent/templates/deployment.yaml @@ -9,6 +9,8 @@ metadata: heritage: {{ .Release.Service }} spec: replicas: {{ .Values.replicaCount }} + strategy: + type: Recreate selector: matchLabels: app: {{ template "qbittorrent.name" . }}