diff --git a/core/blocky/blocky.nomad b/core/blocky/blocky.nomad index f0e37d8..5bf7f19 100644 --- a/core/blocky/blocky.nomad +++ b/core/blocky/blocky.nomad @@ -76,8 +76,8 @@ job "blocky" { resources { cpu = 50 - memory = 50 - memory_max = 100 + memory = 75 + memory_max = 150 } template { diff --git a/core/nomad-client-stalker.nomad b/core/nomad-client-stalker.nomad index 8d151fb..0867055 100644 --- a/core/nomad-client-stalker.nomad +++ b/core/nomad-client-stalker.nomad @@ -24,7 +24,8 @@ job "nomad-client-stalker" { resources { cpu = 10 - memory = 10 + memory = 15 + memory_max = 30 } } } diff --git a/databases/redis.nomad b/databases/redis.nomad index 82aaf63..e371da7 100644 --- a/databases/redis.nomad +++ b/databases/redis.nomad @@ -35,7 +35,7 @@ job "redis-${name}" { resources { cpu = 100 - memory = 128 + memory = 64 memory_max = 512 } } @@ -50,8 +50,8 @@ job "redis-${name}" { } resources { - cpu = 100 - memory = 100 + cpu = 50 + memory = 15 } template { diff --git a/services/lidarr.tf b/services/lidarr.tf index 4faea77..875796d 100644 --- a/services/lidarr.tf +++ b/services/lidarr.tf @@ -40,9 +40,4 @@ module "lidarr" { cpu = 500 memory = 1500 } - - stunnel_resources = { - cpu = 100 - memory = 100 - } } diff --git a/services/photoprism.tf b/services/photoprism.tf index eb2f170..5cfb5a1 100644 --- a/services/photoprism.tf +++ b/services/photoprism.tf @@ -17,13 +17,9 @@ module "photoprism_module" { # }] resources = { cpu = 1500 - memory = 2000 + memory = 2200 memory_max = 4000 } - stunnel_resources = { - cpu = 100 - memory = 100 - } sticky_disk = true host_volumes = [ { diff --git a/services/radarr.tf b/services/radarr.tf index 933d246..b6bd5dd 100644 --- a/services/radarr.tf +++ b/services/radarr.tf @@ -44,11 +44,6 @@ module "radarr" { memory = 500 memory_max = 700 } - - stunnel_resources = { - cpu = 100 - memory = 100 - } } resource "nomad_variable" "authelia_service_rules_radarr" { diff --git a/services/service/vars.tf b/services/service/vars.tf index cc04897..ad135a0 100644 --- a/services/service/vars.tf +++ b/services/service/vars.tf @@ -110,7 +110,7 @@ variable "stunnel_resources" { default = { cpu = 50 - memory = 50 + memory = 15 memory_max = null }