The manual states for creating an OSD with filestore:
But we're missing a certain flag here:
So it should be:
Because the -journal_dev flag does not automatically create a filestore OSD. Instead one is getting a bluestore OSD with journal_dev instead of wal_dev. Atleast thats what worked. Without the bluestore-flag disc didnt show up.
Code:
If you want to use a dedicated SSD journal disk:
pveceph createosd /dev/sd[X] -journal_dev /dev/sd[Y]
But we're missing a certain flag here:
Code:
-bluestore 0
So it should be:
Code:
pveceph createosd /dev/sd[X] -bluestore 0 -journal_dev /dev/sd[Y
Because the -journal_dev flag does not automatically create a filestore OSD. Instead one is getting a bluestore OSD with journal_dev instead of wal_dev. Atleast thats what worked. Without the bluestore-flag disc didnt show up.