D dpearceFL Active Member Jun 1, 2020 94 3 28 65 Mar 26, 2024 #1 I need to create a new VM (250+ actually) that uses Ceph storage. To create a disk on non-Ceph storage: Bash: echo "----- Creating the disk -----" qemu-img create -f qcow2 $DISK $STORAGE_SIZE How do I create a disk on Ceph storage?
I need to create a new VM (250+ actually) that uses Ceph storage. To create a disk on non-Ceph storage: Bash: echo "----- Creating the disk -----" qemu-img create -f qcow2 $DISK $STORAGE_SIZE How do I create a disk on Ceph storage?
bbgeek17 Distinguished Member Nov 20, 2020 4,535 1,298 183 Blockbridge www.blockbridge.com Mar 26, 2024 #2 If its already part of PVE (ie under PVE control): pvesm alloc <storage> <vmid> <filename> <size> [OPTIONS] Blockbridge : Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
If its already part of PVE (ie under PVE control): pvesm alloc <storage> <vmid> <filename> <size> [OPTIONS] Blockbridge : Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
A alexskysilk Distinguished Member Oct 16, 2015 1,821 363 153 Chatsworth, CA www.skysilk.com Mar 26, 2024 #3 if you still want to use qemu-img qemu-img create -f raw rbd:{pool-name}/{image-name} {size} (you can always read the docs https://docs.ceph.com/en/latest/rbd/qemu-rbd)
if you still want to use qemu-img qemu-img create -f raw rbd:{pool-name}/{image-name} {size} (you can always read the docs https://docs.ceph.com/en/latest/rbd/qemu-rbd)