Sasikiran Vaddi
Sasikiran Vaddi

Reputation: 2309

Migrating VM'S from KVM to Openstack

I had KVM and Openstack installed on the same system.

I had cloned a VM in KVM and the instance is running , now I want the running VM to be moved to Openstack. Does anyone here have any advice as to how I can accomplish this?

How do I move the VMs from KVM to Openstack? Can you help me with the steps? I would like each of my VM instances to become ACTIVE, and to have nova commands available. (For example, nova list, nova delete, nova reboot)

Is this possible? If so, what is the best way to do so?

Upvotes: 2

Views: 3821

Answers (1)

Lorin Hochstein
Lorin Hochstein

Reputation: 59212

OpenStack isn't designed to add a running KVM instance that was started outside of OpenStack, because OpenStack makes assumptions about things like:

  • How the VM is attached to the network
  • Name of the libvirt domain
  • Location of the files that contain the disks

The best thing to do would be to take a snapshot of your KVM instance, export it to an image file, and upload the image file to OpenStack.

Upvotes: 3

Related Questions