Merge "Increase the memory limit for qemu-img" into stable/train

This commit is contained in:
Zuul 2021-06-02 02:29:57 +00:00 committed by Gerrit Code Review
commit 2ad982dd8d
2 changed files with 9 additions and 2 deletions

View File

@ -46,8 +46,8 @@ sgdisk -Z $DEVICE
log "Imaging $IMAGEFILE to $DEVICE"
# limit the memory usage for qemu-img to 1 GiB
ulimit -v 1048576
# limit the memory usage for qemu-img to 2 GiB
ulimit -v 2097152
qemu-img convert -t directsync -O host_device $IMAGEFILE $DEVICE
sync

View File

@ -0,0 +1,7 @@
---
fixes:
- |
Increase memory usage limit for ``qemu-img convert`` command to 2 GiB.
See `Story 2008667
<https://storyboard.openstack.org/#!/story/2008667>`_
for details.