Tweak memory requirements for tasks

This commit is contained in:
IamTheFij 2022-07-25 15:51:16 -07:00
parent 9d4cd68648
commit 4a06f31f49
4 changed files with 9 additions and 6 deletions

View File

@ -99,7 +99,8 @@ job "blocky" {
resources { resources {
cpu = 50 cpu = 50
memory = 100 memory = 50
memory_max = 100
} }
template { template {

View File

@ -58,7 +58,8 @@ job "redis" {
resources { resources {
cpu = 100 cpu = 100
memory = 1024 memory = 512
memory_max = 1024
} }
} }
} }

View File

@ -183,8 +183,9 @@ job "traefik" {
} }
resources { resources {
cpu = 50 cpu = 100
memory = 50 memory = 100
memory_max = 200
} }
} }
} }

View File

@ -34,7 +34,7 @@ job "whoami" {
sidecar_task { sidecar_task {
resources { resources {
cpu = 50 cpu = 50
memory = 50 memory = 20
} }
} }
} }
@ -64,7 +64,7 @@ job "whoami" {
resources { resources {
cpu = 50 cpu = 50
memory = 50 memory = 20
} }
} }
} }