Skip to content

Commit

Permalink
osbuild: disable internal compression for qemu qcow2
Browse files Browse the repository at this point in the history
We previously did this in a different way (2a8d1e6) but then
had to revert it (39fdd61) because it caused images to not boot [1].
The root cause appears to have been the virtiofs mount not
being unmounted cleanly from the supermin VM and that is now
fixed so let's switch back to not compressing since we rely on
our outer compression [2].

[1] coreos#3728
[2] coreos/fedora-coreos-tracker#1653 (comment)
  • Loading branch information
dustymabe committed Feb 15, 2024
1 parent e48e736 commit 030e281
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/coreos.osbuild.aarch64.mpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -674,5 +674,5 @@ pipelines:
mpp-format-string: '{filename}'
format:
type: qcow2
compression: true
compression: false
compat: '1.1'
2 changes: 1 addition & 1 deletion src/coreos.osbuild.ppc64le.mpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -641,5 +641,5 @@ pipelines:
mpp-format-string: '{filename}'
format:
type: qcow2
compression: true
compression: false
compat: '1.1'
2 changes: 1 addition & 1 deletion src/coreos.osbuild.s390x.mpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -640,5 +640,5 @@ pipelines:
mpp-format-string: '{filename}'
format:
type: qcow2
compression: true
compression: false
compat: '1.1'
2 changes: 1 addition & 1 deletion src/coreos.osbuild.x86_64.mpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -680,5 +680,5 @@ pipelines:
mpp-format-string: '{filename}'
format:
type: qcow2
compression: true
compression: false
compat: '1.1'

0 comments on commit 030e281

Please sign in to comment.