I have a fresh cluster with a few nodes. Each node is a Linux VM with a 6GB device mounted at dev/sdc1 which I would like to use. When I try to create the rook ceph cluster, rook-ceph-osd-prepare pod logs shows that it is skipping dev/sdc1 because of “Has BlueStore device label”
The sdc1 device is created and mounted using the following powershell commands.
New-VHD -Path $path -SizeBytes $size
$disk = Mount-VHD -Path $path -PassThru
Initialize-Disk $disk.DiskNumber -PartitionStyle MBR
$partition = New-Partition -AssignDriveLetter -UseMaximumSize -DiskNumber $disk.DiskNumber
Dismount-VHD -Path $path
Add-VMHardDiskDrive -VM $vm -ControllerType SCSI -ControllerLocation 3 -Path $path
What am I doing wrong and how do I fix this?
This is a very common issue on Ceph. Below I am citing a possible reason and possible solution from the official documentation for OSD pods are not created on my devices.
Possible Reason:
Possible Solution: