From 2844493fa142cf583157fb3e006c19276c98d793 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Mon, 31 Jul 2023 10:43:51 -0700 Subject: [PATCH] Increase pgsql and lidarr memory to prevent crashes on library --- databases/postgres.nomad | 4 ++-- services/main.tf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/databases/postgres.nomad b/databases/postgres.nomad index ba5b885..d006874 100644 --- a/databases/postgres.nomad +++ b/databases/postgres.nomad @@ -72,8 +72,8 @@ POSTGRES_PASSWORD={{ .superuser_pass }} } resources { - cpu = 300 - memory = 256 + cpu = 500 + memory = 400 } } diff --git a/services/main.tf b/services/main.tf index a299f5b..d70f40a 100644 --- a/services/main.tf +++ b/services/main.tf @@ -251,6 +251,6 @@ module "lidarr" { resources = { cpu = 500 - memory = 1000 + memory = 1500 } }