|
|
@@ -409,6 +409,38 @@ const SUPPORTED_AWS_MACHINE_TYPES: ClientMachineType[] = [
|
|
|
cpuCores: 128,
|
|
|
ramMegabytes: 1048576,
|
|
|
},
|
|
|
+ {
|
|
|
+ name: "r7g.medium",
|
|
|
+ displayName: "r7g.medium",
|
|
|
+ supportedRegions: SUPPORTED_AWS_REGIONS.map((r) => r.name),
|
|
|
+ isGPU: false,
|
|
|
+ cpuCores: 1,
|
|
|
+ ramMegabytes: 8192,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "r7g.large",
|
|
|
+ displayName: "r7g.large",
|
|
|
+ supportedRegions: SUPPORTED_AWS_REGIONS.map((r) => r.name),
|
|
|
+ isGPU: false,
|
|
|
+ cpuCores: 2,
|
|
|
+ ramMegabytes: 16384,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "r7g.xlarge",
|
|
|
+ displayName: "r7g.xlarge",
|
|
|
+ supportedRegions: SUPPORTED_AWS_REGIONS.map((r) => r.name),
|
|
|
+ isGPU: false,
|
|
|
+ cpuCores: 4,
|
|
|
+ ramMegabytes: 32768,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "r7g.2xlarge",
|
|
|
+ displayName: "r7g.2xlarge",
|
|
|
+ supportedRegions: SUPPORTED_AWS_REGIONS.map((r) => r.name),
|
|
|
+ isGPU: false,
|
|
|
+ cpuCores: 8,
|
|
|
+ ramMegabytes: 65536,
|
|
|
+ },
|
|
|
{
|
|
|
name: "m5n.large",
|
|
|
displayName: "m5n.large",
|
|
|
@@ -1412,6 +1444,29 @@ const SUPPORTED_AZURE_MACHINE_TYPES: ClientMachineType[] = [
|
|
|
cpuCores: 8,
|
|
|
ramMegabytes: 32768,
|
|
|
},
|
|
|
+ {
|
|
|
+ name: "Standard_D8s_v5",
|
|
|
+ displayName: "Standard_D8s_v5",
|
|
|
+ supportedRegions: [
|
|
|
+ "australiaeast",
|
|
|
+ "canadacentral",
|
|
|
+ "centralindia",
|
|
|
+ "eastasia",
|
|
|
+ "eastus",
|
|
|
+ "eastus2",
|
|
|
+ "francecentral",
|
|
|
+ "northeurope",
|
|
|
+ "norwayeast",
|
|
|
+ "southafricanorth",
|
|
|
+ "swedencentral",
|
|
|
+ "switzerlandnorth",
|
|
|
+ "uaenorth",
|
|
|
+ "uksouth",
|
|
|
+ ],
|
|
|
+ isGPU: false,
|
|
|
+ cpuCores: 8,
|
|
|
+ ramMegabytes: 32768,
|
|
|
+ },
|
|
|
];
|
|
|
const SUPPORTED_AZURE_SKU_TIERS = [
|
|
|
{
|