I have a running vm in vmware environment and need to migrate that vm to openstack environment(qcow2).
I exported my virtual machine and it created 3 vmdks files, now how can I install this 3 vmdk files in to openstack environment. I have converted these 3 vmdks files to qcow2 format but how can I handle 3 qcow2 image to install my vm.
Could someone guide please?
You could try create server with
--block-device-mapping, check from "Block Device Mapping in Nova".Like this:
In my situation, we use
cephto provide the shared storage, so I usevolumeinstead of theimagein above command line, it works for me. I think it's similar with local disk storage like your scenario.Another thing, I had test that
ceph shared storagecould transform tolocal disk storagewith replace the disk's file byqemu-img convert, vice versa.