From 7a5749f26c4d1f498f9ce921275f90b228000d13 Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Tue, 3 Dec 2024 11:46:52 +0100 Subject: [PATCH 1/2] Add Longhorn troubleshooting docs --- docs/longhorn.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/longhorn.md b/docs/longhorn.md index 532a188..f6c75fb 100644 --- a/docs/longhorn.md +++ b/docs/longhorn.md @@ -1,5 +1,19 @@ # Longhorn notes +## Troubleshooting + +``` +Multi-Attach error for volume "prowlarr" Volume is already exclusively attached to one node and can't be attached to another +``` + +I solved the above problem like this: +``` +❯ kubectl get volumeattachments | grep prowlarr +csi-f13ee1f46a4acc0d7e4abe8a3c993c7e043e9a55cd7573bda3499085654b493a driver.longhorn.io prowlarr lewis true 3m38s +❯ kubectl delete volumeattachments csi-f13ee1f46a4acc0d7e4abe8a3c993c7e043e9a55cd7573bda3499085654b493a +❯ kubectl rollout restart -n media deployment prowlarr +``` + ## Migration from NFS to Longhorn 1. Delete the workload, and delete the PVC and PVC using NFS. From c6028dc46e47eb46cbf525a1db477609f4d43b31 Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Tue, 3 Dec 2024 11:47:17 +0100 Subject: [PATCH 2/2] prowlarr: 1.26.1 -> 1.27.0 --- globals.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/globals.nix b/globals.nix index 287f33b..52736d5 100644 --- a/globals.nix +++ b/globals.nix @@ -5,7 +5,7 @@ deluge = "linuxserver/deluge:2.1.1"; jellyseerr = "fallenbagel/jellyseerr:2.1.0"; radarr = "lscr.io/linuxserver/radarr:5.15.1"; - prowlarr = "lscr.io/linuxserver/prowlarr:1.26.1"; + prowlarr = "lscr.io/linuxserver/prowlarr:1.27.0"; sonarr = "lscr.io/linuxserver/sonarr:4.0.11"; bazarr = "lscr.io/linuxserver/bazarr:1.4.5"; atuin = "ghcr.io/atuinsh/atuin:18.3.0";