From 4d8ffba44277364bd08c3f8ff5bf1eb88d20dadc Mon Sep 17 00:00:00 2001 From: Jakub Kadlcik Date: Thu, 15 May 2025 17:56:21 +0200 Subject: [PATCH] copr-be: use larger root volume size because of bootc images They are larger than 6GB so it fails that we cannot make them smaller. --- roles/copr/backend/templates/provision/libvirt-new | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/roles/copr/backend/templates/provision/libvirt-new b/roles/copr/backend/templates/provision/libvirt-new index 3ff7ff6345..1f51bda05c 100755 --- a/roles/copr/backend/templates/provision/libvirt-new +++ b/roles/copr/backend/templates/provision/libvirt-new @@ -63,6 +63,12 @@ class LibvirtSpawner: self.log.debug("Logging to %s", self.connection) self.cleanup_actions = {} + # This is not needed by our standard x86_64, only experimental bootc + # builders. Eventually, we should either make them smaller or use this + # larger volume size for all architectures. + if self.arch == "x86_64": + self.root_vol_size = "11GB" + def call(self, cmd, *args, **kwargs): """ Run CMD, and log info.