Hi,
I'm using Ceph with Proxmox and it seems very good for now.
I have 2 suggestions that may help people :
* Work with partitions and not whole disk when creating OSDs.
I bypassed that using :
And adding in /etc/pve/ceph.conf:
And it works fine with Proxmox.
* When creating an image via RBD, let choose striping settings.
As described here : http://ceph.com/docs/master/man/8/rbd/#striping
People may want objects size larger than 4MB (default value, I think too low for drive images files).
Just 3 new fields on HDD adding to let choose that
Thank you
I'm using Ceph with Proxmox and it seems very good for now.
I have 2 suggestions that may help people :
* Work with partitions and not whole disk when creating OSDs.
I bypassed that using :
Code:
ceph-disk prepare --cluster ceph --cluster-uuid 42081905-1a6b-4b9e-8984-145afe0f22f6 --fs-type xfs /dev/sdb3
ceph-disk activate /dev/sdb3
And adding in /etc/pve/ceph.conf:
Code:
[osd.0]
host = test1
devs = /dev/sdb3
osd mkfs type = xfs
And it works fine with Proxmox.
* When creating an image via RBD, let choose striping settings.
As described here : http://ceph.com/docs/master/man/8/rbd/#striping
People may want objects size larger than 4MB (default value, I think too low for drive images files).
Just 3 new fields on HDD adding to let choose that
Thank you