Use default compat for qcow2 images.

This will cause images to be created with more moderm features which
will make our images faster and provide better sparse handling.
default-compat
Brian Murray 2 years ago
parent 03597e8cb4
commit 187f777718

@ -370,7 +370,7 @@ create_derivative() {
convert_to_qcow2() {
src="$1"
destination="$2"
qemu-img convert -c -O qcow2 -o compat=0.10 "$src" "$destination"
qemu-img convert -c -O qcow2 "$src" "$destination"
qemu-img info "$destination"
}

Loading…
Cancel
Save