Skip to content

Commit 22aca49

Browse files
committed
cmdlib: bump cache qcow2 size
Now that we can build more and more artifacts in OSBuild it increases the size we need for the cache qcow that gets attached to the supermin VM. Let's bump to 40G here. Observing a RHCOS and FCOS run here they both use right around 30G today because FCOS builds for more platforms, but RHCOS has a bigger payload, so they even out. In the they will be even bigger when we become able to build the last few artifacts (vmware, virtualbox, etc) using OSBuild.
1 parent d160242 commit 22aca49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmdlib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ runcompose_tree() {
579579

580580
# Run with cache disk.
581581
runvm_with_cache() {
582-
local cache_size=${RUNVM_CACHE_SIZE:-30G}
582+
local cache_size=${RUNVM_CACHE_SIZE:-40G}
583583
# "cache2" has an explicit label so we can find it in qemu easily
584584
if [ ! -f "${workdir}"/cache/cache2.qcow2 ]; then
585585
qemu-img create -f qcow2 cache2.qcow2.tmp "$cache_size"

0 commit comments

Comments
 (0)