Move sonarr off longhorn

This commit is contained in:
Pim Kunis 2025-05-22 23:01:27 +02:00
parent da5f468c08
commit c11d820191
2 changed files with 4 additions and 7 deletions

View file

@ -114,7 +114,6 @@
jellyseerr.storage = "75Mi"; jellyseerr.storage = "75Mi";
radarr.storage = "300Mi"; radarr.storage = "300Mi";
prowlarr.storage = "150Mi"; prowlarr.storage = "150Mi";
sonarr.storage = "250Mi";
bazarr.storage = "25Mi"; bazarr.storage = "25Mi";
minecraft.storage = "1Gi"; minecraft.storage = "1Gi";
ntfy.storage = "300Mi"; ntfy.storage = "300Mi";

View file

@ -481,7 +481,10 @@ in {
}; };
volumes = { volumes = {
config.persistentVolumeClaim.claimName = "sonarr"; config.hostPath = {
path = "/mnt/longhorn/persistent/volumes/sonarr";
type = "Directory";
};
media.hostPath = { media.hostPath = {
path = "/mnt/longhorn/persistent/media"; path = "/mnt/longhorn/persistent/media";
@ -822,11 +825,6 @@ in {
storage = "150Mi"; storage = "150Mi";
}; };
sonarr = lib.mkIf cfg.sonarr.enable {
volumeName = "sonarr";
storage = "250Mi";
};
bazarr = lib.mkIf cfg.bazarr.enable { bazarr = lib.mkIf cfg.bazarr.enable {
volumeName = "bazarr"; volumeName = "bazarr";
storage = "25Mi"; storage = "25Mi";