From 90c23bff6ee5f7c30834fefe4ef89768eb87a1ee Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 10 Sep 2021 09:19:13 -0700 Subject: [PATCH] Use 3G memory for virt-install image builds Seems like 2G isn't enough in some cases, it's why the F34 server and support image builds have been failing. Signed-off-by: Adam Williamson --- createhdds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/createhdds.py b/createhdds.py index 42713e3..758ea7e 100755 --- a/createhdds.py +++ b/createhdds.py @@ -286,7 +286,7 @@ class VirtInstallImage(object): tmpfile = "{0}.tmp".format(self.filename) arch = self.arch fedoradir = 'fedora/linux' - memsize = '2048' + memsize = '3072' if arch == 'i686': arch = 'i386' if arch in ['ppc64','ppc64le']: