How to Check Instance Availability Required for Pure Cloud Block Store Deployment
Introduction
Cloud Block Store on AWS and on Azure is utilizing a range of services and instances. Generally, not all instances types can be available in all the regions, This might be due to the limited number of instances, or it might be available upon customer request. As CBS platform is built on the certain instance that has been designed, tested, and selected carefully to provide the capabilities and performance that can be leveraged.
We aim to keep the tables on Regions Support up to date. However, it is recommended to check the availability of the instance in the selected region before deploying.
Check AWS Resources
Instance Type
In a Terminal, Install and configure AWS CLI, then execute the command:
For v20 Model: c5n.18xlarge
For v10 Model: c5n.9xlarge
aws ec2 describe-instance-type-offerings \ --filters Name=instance-type,Values=<instance_type> \ --query "InstanceTypeOfferings[].InstanceType" \ --region <region-name>
Alternatively, use AWS CloudShell, see the example below:
Check Azure Resources
Instance Type and Ultra Disks
In Azure Console, open Cloud Shell, choose Powershell, and execute the below:
For v20 Model: D64s_v3
For v10 Model: D32s_v3
$region = "southeastasia" $vmSize = "Standard_D32s_v3" $sku = (Get-AzComputeResourceSku | where {$_.Locations.Contains($region) -and ($_.Name -eq $vmSize) -and $_.LocationInfo[0].ZoneDetails.Count -gt 0}) if($sku){$sku[0].LocationInfo[0].ZoneDetails} Else {Write-host "$vmSize is not supported with Ultra Disk in $region region"}