From 177d7b480cea9c17228d2fb50fcb47f61f0f1410 Mon Sep 17 00:00:00 2001 From: Caleb Braaten Date: Thu, 15 Aug 2024 04:30:18 -0700 Subject: [PATCH] Reduce default resources allotment --- nomad_jobs/services/umami/umami.nomad.hcl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nomad_jobs/services/umami/umami.nomad.hcl b/nomad_jobs/services/umami/umami.nomad.hcl index 38c683f..6b89d9a 100644 --- a/nomad_jobs/services/umami/umami.nomad.hcl +++ b/nomad_jobs/services/umami/umami.nomad.hcl @@ -81,9 +81,9 @@ job "umami" { } resources { - cpu = 2000 - memory = 1024 - memory_max = 2048 + cpu = 1000 + memory = 512 + memory_max = 1024 } } }