From a76732f7678c8625650946d09d1ab3f3cbb3ff4b Mon Sep 17 00:00:00 2001 From: Eric Bischoff Date: Wed, 13 Mar 2024 12:45:42 +0100 Subject: [PATCH] Work around OOM problems --- terracumber_config/tf_files/Uyuni-Master-NUE.tf | 4 +++- terracumber_config/tf_files/Uyuni-Master-PRV.tf | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/terracumber_config/tf_files/Uyuni-Master-NUE.tf b/terracumber_config/tf_files/Uyuni-Master-NUE.tf index 0b4e0c70a..5f8e6f70a 100644 --- a/terracumber_config/tf_files/Uyuni-Master-NUE.tf +++ b/terracumber_config/tf_files/Uyuni-Master-NUE.tf @@ -144,7 +144,9 @@ module "cucumber_testsuite" { provider_settings = { mac = "aa:b2:93:01:00:d2" vcpu = 2 - memory = 2048 + # WORKAROUND: the 2 GB advertised in our documentation seem not enough anymore? + # memory = 2048 + memory = 3072 } additional_packages = [ "venv-salt-minion" ] install_salt_bundle = true diff --git a/terracumber_config/tf_files/Uyuni-Master-PRV.tf b/terracumber_config/tf_files/Uyuni-Master-PRV.tf index 0278ed278..1fdcf1383 100644 --- a/terracumber_config/tf_files/Uyuni-Master-PRV.tf +++ b/terracumber_config/tf_files/Uyuni-Master-PRV.tf @@ -144,7 +144,9 @@ module "cucumber_testsuite" { provider_settings = { mac = "aa:b2:92:03:00:d2" vcpu = 2 - memory = 2048 + # WORKAROUND: the 2 GB advertised in our documentation seem not enough anymore? + # memory = 2048 + memory = 3072 } additional_packages = [ "venv-salt-minion" ] install_salt_bundle = true