Enum AzureStorageType
Enumerates the possible Azure storage account types. Microsoft explains their disk types here:
https://docs.microsoft.com/en-us/azure/virtual-machines/windows/disks-types
Namespace: Neon.Kube.ClusterDef
Assembly: Neon.Kube.dll
Syntax
public enum AzureStorageType
Fields
Name | Description |
---|---|
Default | Indicates that the default Azure storage type will be provisioned. When StorageType=Default then DefaultStorageType will be provisioned. If DefaultStorageType=Default then StandardSSD will be provisioned. |
PremiumSSD | Premium managed SSD drives deliver high througput and low latency and are suitable for I/O intensive workloads. These are available in sizes up to 32TiB. |
PremiumSSDv2 | Premium v2 managed SSD drives are intended for the very demanding I/O workloads. These have substantially more I/O throughput than PremiumSSD disks and also range in size up to 64TiB (double PremiumSSD).. noteAzure doesn't support using PremiumSSDv2 disks as virtual machine OS disks. NEONKUBE will quietly substitude a PremiumSSD in this case. |
StandardHDD | Standard managed spinning drives are quite slow but are also very inexpensive. These may be suited for test or latency insensitive clusters. These are available in sizes up to 32TiB. |
StandardSSD | Managed SSD based drives are a cost effect option that offers better latancy and reliability than StandardHDD. These are available in sizes up to 32TiB. |
UltraSSD | Ultra managed SSD drives are intended for the most demanding I/O workloads. These range in size up to 64TiB. noteAzure doesn't support using UltraSSD disks as virtual machine OS disks. NEONKUBE will quietly substitude a PremiumSSD in this case. |