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.
This commit is contained in:
Jakub Kadlcik 2025-05-15 17:56:21 +02:00
parent 33c58321c5
commit 4d8ffba442

View file

@ -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.