Performance Tier and Capacity Tier show 0GB available. Cluster Pool shows 4.66TB of capacity.
When I try to create a volume it says "The storage pool does not have sufficient eligible resources for the creation of the specified virtual disk"
These are the commands I ran:
Below is an example of the steps to do this:
#Create cluster and enable S2D
New-Cluster -Name DFR-Research -Node node1,node2 -NoStorage
Enable-ClusterS2D -AutoConfig:0 -SkipEligibilityChecks
#Create storage pool and set media type to HDD
New-StoragePool -StorageSubSystemFriendlyName *Cluster* -FriendlyName S2D -ProvisioningTypeDefault Fixed -PhysicalDisk (Get-PhysicalDisk | ? CanPool -eq $true)
Get-StorageSubsystem *cluster* | Get-PhysicalDisk | Where MediaType -eq "UnSpecified" | Set-PhysicalDisk -MediaType HDD
#Create storage tiers
$pool = Get-StoragePool S2D
New-StorageTier -StoragePoolUniqueID ($pool).UniqueID -FriendlyName Performance -MediaType HDD -ResiliencySettingName Mirror
New-StorageTier -StoragePoolUniqueID ($pool).UniqueID -FriendlyName Capacity -MediaType HDD -ResiliencySettingName Parity
#Create a volume
New-Volume -StoragePool $pool -FriendlyName Mirror -FileSystem CSVFS_REFS -StorageTiersFriendlyNames Performance, Capacity -StorageTierSizes
2GB, 10GB

Jonathan Martinez