Tune memory after reviewing grafana

This commit is contained in:
IamTheFij 2024-03-26 09:48:31 -07:00
parent e6653f6495
commit 3dcd4c44b3
7 changed files with 9 additions and 22 deletions

View File

@ -76,8 +76,8 @@ job "blocky" {
resources { resources {
cpu = 50 cpu = 50
memory = 50 memory = 75
memory_max = 100 memory_max = 150
} }
template { template {

View File

@ -24,7 +24,8 @@ job "nomad-client-stalker" {
resources { resources {
cpu = 10 cpu = 10
memory = 10 memory = 15
memory_max = 30
} }
} }
} }

View File

@ -35,7 +35,7 @@ job "redis-${name}" {
resources { resources {
cpu = 100 cpu = 100
memory = 128 memory = 64
memory_max = 512 memory_max = 512
} }
} }
@ -50,8 +50,8 @@ job "redis-${name}" {
} }
resources { resources {
cpu = 100 cpu = 50
memory = 100 memory = 15
} }
template { template {

View File

@ -40,9 +40,4 @@ module "lidarr" {
cpu = 500 cpu = 500
memory = 1500 memory = 1500
} }
stunnel_resources = {
cpu = 100
memory = 100
}
} }

View File

@ -17,13 +17,9 @@ module "photoprism_module" {
# }] # }]
resources = { resources = {
cpu = 1500 cpu = 1500
memory = 2000 memory = 2200
memory_max = 4000 memory_max = 4000
} }
stunnel_resources = {
cpu = 100
memory = 100
}
sticky_disk = true sticky_disk = true
host_volumes = [ host_volumes = [
{ {

View File

@ -44,11 +44,6 @@ module "radarr" {
memory = 500 memory = 500
memory_max = 700 memory_max = 700
} }
stunnel_resources = {
cpu = 100
memory = 100
}
} }
resource "nomad_variable" "authelia_service_rules_radarr" { resource "nomad_variable" "authelia_service_rules_radarr" {

View File

@ -110,7 +110,7 @@ variable "stunnel_resources" {
default = { default = {
cpu = 50 cpu = 50
memory = 50 memory = 15
memory_max = null memory_max = null
} }