add soulseek and adjust navidrome and lidarr to share same music dir [ci skip]

This commit is contained in:
Viktor Barzin 2025-09-07 16:35:29 +00:00
parent b99ebcf75d
commit 7f58cc936a
4 changed files with 170 additions and 1 deletions

View file

@ -54,6 +54,11 @@ resource "kubernetes_deployment" "navidrome" {
mount_path = "/music"
read_only = true
}
volume_mount {
name = "lidarr"
mount_path = "/lidarr"
read_only = true
}
port {
name = "http"
container_port = 4533
@ -74,6 +79,13 @@ resource "kubernetes_deployment" "navidrome" {
server = "192.168.1.13"
}
}
volume {
name = "lidarr"
nfs {
path = "/mnt/main/servarr/lidarr"
server = "10.0.10.15"
}
}
}
}
}