From 2c516aa413531141dcf763613437de24bbd0a28c Mon Sep 17 00:00:00 2001 From: rmpratt1 Date: Wed, 19 Aug 2026 12:40:02 -0700 Subject: [PATCH] Increase default RAM allocation for Gatus (#16601) Gatus install was failing with the existing memory defaults (512M) due to thrashing from memory pressure while compiling the package. Bumped to 2048M as the same issue occurred when using 1024M. Gatus LXC is hovering around 150M post install so this could be bumped down after the install completed but there is no installation time only setting as far as I am aware. --- ct/gatus.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/gatus.sh b/ct/gatus.sh index 2faf7bec3..547f3c278 100644 --- a/ct/gatus.sh +++ b/ct/gatus.sh @@ -19,11 +19,11 @@ if [[ -z "${var_os:-}" ]] && command -v pveversion >/dev/null 2>&1; then fi if [[ "${var_os:-}" == "alpine" ]]; then - var_ram="${var_ram:-512}" + var_ram="${var_ram:-2048}" var_disk="${var_disk:-3}" var_version="${var_version:-3.24}" else - var_ram="${var_ram:-512}" + var_ram="${var_ram:-2048}" var_disk="${var_disk:-4}" var_version="${var_version:-13}" fi