Skip to content

Commit

Permalink
tests/storage-vm: Add test for live resizing of VM disks with zfs or …
Browse files Browse the repository at this point in the history
…lvm pool driver

Signed-off-by: Kadin Sayani <[email protected]>
  • Loading branch information
kadinsayani committed Oct 9, 2024
1 parent 939a4b5 commit db901b4
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions tests/storage-vm
Original file line number Diff line number Diff line change
Expand Up @@ -281,9 +281,25 @@ for poolDriver in $poolDriverList; do
echo "==> Testing VM optimized export/import (while running to check config.mount is excluded)"
! lxc export v1 --quiet --compression=none - --optimized-storage | tar -tf - | grep -F config.mount || false

echo "==> Increasing VM root disk size for next boot (24GiB)"
lxc config device set v1 root size=24GiB
[ "$(lxc config get v1 volatile.root.apply_quota)" = "true" ]
LIVE_GROWING_SUPPORTED=0
if hasNeededAPIExtension vm_zfs_storage_disk_live_resize && [ "${poolDriver}" = "zfs" ]; then
LIVE_GROWING_SUPPORTED=1
elif hasNeededAPIExtension vm_lvm_storage_disk_live_resize; then
if [ "${poolDriver}" = "lvm" ] || [ "${poolDriver}" = "lvm-thin" ]; then
LIVE_GROWING_SUPPORTED=1
fi
fi

if [ "${LIVE_GROWING_SUPPORTED}" = 1 ]; then
echo "==> Checking live root disk device resize support with ${poolDriver} backend"
lxc config device set v1 root size=16GiB
[ "$(($(lxc exec v1 -- blockdev --getsize64 /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_lxd_root) / GiB))" -eq "16" ]
[ "$(lxc config get v1 volatile.root.apply_quota)" = "" ]
else
echo "==> Increasing VM root disk size for next boot (24GiB)"
lxc config device set v1 root size=24GiB
[ "$(lxc config get v1 volatile.root.apply_quota)" = "true" ]
fi

if [ "${poolDriver}" != "powerflex" ]; then
echo "==> Check VM online shrink is allowed if it greater or equal to initial size"
Expand Down

0 comments on commit db901b4

Please sign in to comment.