From 76e250c3341c3f8b35ac6734fe450fe70a335eea Mon Sep 17 00:00:00 2001 From: CTO Agent Date: Sun, 23 Aug 2026 15:39:17 +0000 Subject: [PATCH] fix(opencloud): use Recreate rollout strategy for RWO PVC (DEV-538) The 7.2.0 -> 7.4.0 rollout stalled because the default RollingUpdate tried to start the new pod before terminating the old one, but they both mount opencloud-data (RWO), causing Multi-Attach errors. Switch to strategy: Recreate so the old pod is terminated first and the volume detaches cleanly before the new pod starts. Same fix pattern as bookstack (DEV-528) and other RWO-backed apps. Co-Authored-By: Paperclip --- apps/opencloud/opencloud-deployment.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/opencloud/opencloud-deployment.yaml b/apps/opencloud/opencloud-deployment.yaml index 94ae2f5..a90fac9 100644 --- a/apps/opencloud/opencloud-deployment.yaml +++ b/apps/opencloud/opencloud-deployment.yaml @@ -42,6 +42,8 @@ metadata: namespace: opencloud spec: replicas: 1 + strategy: + type: Recreate selector: matchLabels: app: opencloud