move all downloads directories to be shared across all servarr pods [ci skip]
This commit is contained in:
parent
270818e7be
commit
0ea2ffcdf6
4 changed files with 24 additions and 3 deletions
|
|
@ -50,7 +50,7 @@ resource "kubernetes_deployment" "lidarr" {
|
|||
mount_path = "/config"
|
||||
}
|
||||
volume_mount {
|
||||
name = "data"
|
||||
name = "downloads"
|
||||
mount_path = "/downloads"
|
||||
}
|
||||
volume_mount {
|
||||
|
|
@ -65,6 +65,13 @@ resource "kubernetes_deployment" "lidarr" {
|
|||
server = "10.0.10.15"
|
||||
}
|
||||
}
|
||||
volume {
|
||||
name = "downloads"
|
||||
nfs {
|
||||
path = "/mnt/main/servarr/downloads"
|
||||
server = "10.0.10.15"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ resource "kubernetes_deployment" "prowlarr" {
|
|||
mount_path = "/books"
|
||||
}
|
||||
volume_mount {
|
||||
name = "data"
|
||||
name = "downloads"
|
||||
mount_path = "/downloads"
|
||||
}
|
||||
}
|
||||
|
|
@ -65,6 +65,13 @@ resource "kubernetes_deployment" "prowlarr" {
|
|||
server = "10.0.10.15"
|
||||
}
|
||||
}
|
||||
volume {
|
||||
name = "downloads"
|
||||
nfs {
|
||||
path = "/mnt/main/servarr/downloads"
|
||||
server = "10.0.10.15"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ resource "kubernetes_deployment" "qbittorrent" {
|
|||
mount_path = "/config"
|
||||
}
|
||||
volume_mount {
|
||||
name = "data"
|
||||
name = "downloads"
|
||||
mount_path = "/downloads"
|
||||
}
|
||||
}
|
||||
|
|
@ -65,6 +65,13 @@ resource "kubernetes_deployment" "qbittorrent" {
|
|||
server = "10.0.10.15"
|
||||
}
|
||||
}
|
||||
volume {
|
||||
name = "downloads"
|
||||
nfs {
|
||||
path = "/mnt/main/servarr/downloads"
|
||||
server = "10.0.10.15"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue