cluster/nomad/regions/homelab-1/job/jellyfin.hcl
Magic_RB 5ed9ee1903
Terraform: add flake_ref to allow for branches
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2022-09-18 18:33:26 +02:00

132 lines
2.4 KiB
HCL

job "jellyfin" {
datacenters = [ "homelab-1" ]
type = "service"
constraint {
attribute = "${attr.unique.hostname}"
value = "blowhole"
}
group "jellyfin" {
count = 1
volume "jellyfin-cache" {
type = "csi"
source = "jellyfin-cache"
read_only = false
attachment_mode = "file-system"
access_mode = "single-node-writer"
}
volume "jellyfin-config" {
type = "csi"
source = "jellyfin-config"
read_only = false
attachment_mode = "file-system"
access_mode = "single-node-writer"
}
volume "jellyfin-media" {
type = "csi"
source = "jellyfin-media"
read_only = false
attachment_mode = "file-system"
access_mode = "single-node-writer"
}
volume "jellyfin-mount" {
type = "host"
read_only = true
source = "jellyfin-mount"
}
network {
mode = "bridge"
port "http" {
to = 8096
}
}
service {
name = "jellyfin"
port = "8096"
check {
type = "http"
address_mode = "alloc"
path = "/"
port = "8096"
interval = "10s"
timeout = "10s"
}
connect {
sidecar_service {}
sidecar_task {
resources {
cpu = 75
memory = 48
}
config {
memory_hard_limit = 96
}
}
}
}
task "jellyfin" {
driver = "docker"
config {
image = "jellyfin/jellyfin@sha256:73501b70b0e884e5815d8f03d22973513ae7cadbcd8dba95da60e1d7c82dac7b"
devices = [
{
host_path = "/dev/dri/renderD128"
container_path = "/dev/dri/renderD128"
},
{
host_path = "/dev/dri/card0"
container_path = "/dev/dri/card0"
}
]
}
resources {
cpu = 1024
memory = 1024
}
volume_mount {
volume = "jellyfin-cache"
destination = "/cache"
read_only = false
}
volume_mount {
volume = "jellyfin-config"
destination = "/config"
read_only = false
}
volume_mount {
volume = "jellyfin-media"
destination = "/media"
read_only = false
}
volume_mount {
volume = "jellyfin-mount"
destination = "/mount"
read_only = true
}
}
}
}