This PR introduces the ability to move virtual machines between storage pools while they are running. For example, executing:
incus mv vm1 --target server01 --storage new-pool
enables a live migration of the VM to a different storage pool. The --storage flag must be used in conjunction with the --target flag. This approach treats the operation as a traditional live migration, avoiding scenarios where both the source and target reside on the same machine.
This PR introduces the ability to move virtual machines between storage pools while they are running. For example, executing:
incus mv vm1 --target server01 --storage new-pool
enables a live migration of the VM to a different storage pool. The--storage
flag must be used in conjunction with the--target
flag. This approach treats the operation as a traditional live migration, avoiding scenarios where both the source and target reside on the same machine.Closes #1064