Enforcing a size into cephfs.

UPDATE
So I ended up created to partitions in /dev/sdc
/dev/sdc1 with 800G
/dev/sdc2 with 100G
Then I create two OSD using /dev/sdc1 and /dev/sdc2, but osd using /dev/sdc2 I marked as HDD.
After that I create a crush_rule:
ceph osd crush rule create-replicated HDD_REP default host hdd
After that I insert the cephfs data and metadata into HDD_REP crush_rule:
ceph osd pool set cephfs_data crush_rule HDD_REP
ceph osd pool set cephfs_metadata crush_rule HDD_REP
And then I end up with a chepfs named templates with 100G.
Toughts?