Move Radarr off Longhorn

This commit is contained in:
Pim Kunis 2025-05-23 10:07:42 +02:00
parent c11d820191
commit 84bbe20ffb
2 changed files with 4 additions and 17 deletions

View file

@ -112,7 +112,6 @@
jellyfin.storage = "10Gi";
transmission.storage = "25Mi";
jellyseerr.storage = "75Mi";
radarr.storage = "300Mi";
prowlarr.storage = "150Mi";
bazarr.storage = "25Mi";
minecraft.storage = "1Gi";

View file

@ -352,7 +352,10 @@ in {
};
volumes = {
config.persistentVolumeClaim.claimName = "radarr";
config.hostPath = {
path = "/mnt/longhorn/persistent/volumes/radarr";
type = "Directory";
};
media.hostPath = {
path = "/mnt/longhorn/persistent/media";
@ -360,11 +363,6 @@ in {
};
};
securityContext = {
fsGroup = 410;
fsGroupChangePolicy = "OnRootMismatch";
};
affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms = [
{
matchExpressions = [
@ -492,11 +490,6 @@ in {
};
};
securityContext = {
fsGroup = 411;
fsGroupChangePolicy = "OnRootMismatch";
};
affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms = [
{
matchExpressions = [
@ -815,11 +808,6 @@ in {
storage = "75Mi";
};
radarr = lib.mkIf cfg.radarr.enable {
volumeName = "radarr";
storage = "300Mi";
};
prowlarr = lib.mkIf cfg.prowlarr.enable {
volumeName = "prowlarr";
storage = "150Mi";