perfs: increase memory-max for some job
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
vincent 2024-09-29 17:51:05 +02:00
parent 3d90a1f6d7
commit 7948773757
4 changed files with 69 additions and 3 deletions

View File

@ -96,7 +96,8 @@ job "immich" {
env = true
}
resources {
memory = 500
memory = 600
memory_max = 1800
}
}

View File

@ -0,0 +1,64 @@
job "rutorrentlocal" {
datacenters = ["homelab"]
priority = 80
type = "service"
meta {
forcedeploy = "0"
}
constraint {
attribute = "${node.unique.name}"
operator = "set_contains"
value = "oberon"
}
group "bittorent" {
network {
mode = "host"
port "http" {
to = 8080
}
port "torrent" {
static = 6881
}
port "ecoute" {
static = 50000
}
}
task "bittorent" {
driver = "podman"
service {
name = "bittorentlocal"
port = "http"
address_mode= "host"
tags = [
]
}
user = "root"
config {
image = "docker.service.consul:5000/crazymax/rtorrent-rutorrent:edge"
ports = [
"http",
"torrent",
"ecoute"
]
volumes = [
"/exports/nomad/rutorrent/data:/data",
"/exports/nomad/rutorrent/downloads:/downloads"
]
}
env {
PUID = 100001
PGID = 10
UMASK = 002
WEBUI_PORT = "8080"
}
resources {
memory = 650
}
}
}
}

View File

@ -74,6 +74,7 @@ job "batch-seedboxsync" {
}
resources {
memory = 500
memory_max = 1000
}
}

View File

@ -90,7 +90,7 @@ version: '0.1'
}
resources {
memory = 150
memory_max = 400
memory_max = 600
}
}
task "docker-ghcr" {
@ -133,7 +133,7 @@ version: '0.1'
}
resources {
memory = 150
memory_max = 400
memory_max = 600
}
}