From 246bdd762a627531da0eb042fd134340ca94b749 Mon Sep 17 00:00:00 2001 From: spolice Date: Thu, 16 Feb 2023 03:54:20 -0500 Subject: [PATCH] Increase platform memory reserve on AIO in VBOX When installing an AIO-SX in virtualbox it always end up with a lab that is degraded due to the platform memory threshold being exceeded its because default platform memory reservations are too low resulting in a critical memory alarm. Increase platform memory reserve on AIO hosts in VBOX Test Plan: PASS: Install AIO-SX And confirm platform memory reserve in collectd logs. PASS: No critical memory alarm is seen Closes-Bug: 2007537 Change-Id: I5e8a96fc089eee5910639f6b4c5dc0aa2a0bcf78 Signed-off-by: spolice --- sysinv/sysinv/sysinv/sysinv/common/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysinv/sysinv/sysinv/sysinv/common/constants.py b/sysinv/sysinv/sysinv/sysinv/common/constants.py index 7151b6a3b1..1cc5e825e4 100644 --- a/sysinv/sysinv/sysinv/sysinv/common/constants.py +++ b/sysinv/sysinv/sysinv/sysinv/common/constants.py @@ -243,7 +243,7 @@ PLATFORM_CORE_MEMORY_RESERVED_MIB_VBOX_WORKER = 2000 # For AIO config, memory reserved for controller in MiB COMBINED_NODE_CONTROLLER_MEMORY_RESERVED_MIB = 7000 -COMBINED_NODE_CONTROLLER_MEMORY_RESERVED_MIB_VBOX = 3000 +COMBINED_NODE_CONTROLLER_MEMORY_RESERVED_MIB_VBOX = 5000 COMBINED_NODE_CONTROLLER_MEMORY_RESERVED_MIB_XEOND = 3000 # For standard/distributed cloud config, memory reserved for controller in MiB