lxc / incus

Powerful system container and virtual machine manager
https://linuxcontainers.org/incus
Apache License 2.0
2.78k stars 224 forks source link

Allow local live-migration between storage pools #1410

Open presztak opened 9 hours ago

presztak commented 9 hours ago

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