Apologies if the terminology I'm using is incorrect, but I'll try to illustrate what I'm trying to do. The end goal is to be able to import a qcow2 image into ceph and then attach it to any VM across one of my five nodes in the cluster. I originally used "qm" but that only lets me access the local node that the commands are being run on so it won't help me for this.
First, I'm importing my qcow2 image into ceph:
Then I can verify that it imported successfully:

As you can see in the above image, Proxmox is only aware of vm-352-disk-0 (this is expected because rbd != Proxmox).
Now the only piece that I still need to figure out is how to make Proxmox see this new rbd image as a hard disk. How can I do that?
Thank you!
First, I'm importing my qcow2 image into ceph:
Code:
$ sudo qemu-img convert -f qcow2 -O raw test-image.qcow2 rbd:rbd/vm-352-disk-2
Then I can verify that it imported successfully:
Code:
$ sudo rbd ls
vm-352-disk-0
vm-352-disk-2

As you can see in the above image, Proxmox is only aware of vm-352-disk-0 (this is expected because rbd != Proxmox).
Now the only piece that I still need to figure out is how to make Proxmox see this new rbd image as a hard disk. How can I do that?
Thank you!
Last edited: