diff --git a/dashboard/src/lib/clusters/constants.ts b/dashboard/src/lib/clusters/constants.ts index 1511c027f3..52cd836042 100644 --- a/dashboard/src/lib/clusters/constants.ts +++ b/dashboard/src/lib/clusters/constants.ts @@ -941,6 +941,126 @@ const SUPPORTED_GCP_MACHINE_TYPES: ClientMachineType[] = [ cpuCores: 44, ramMegabytes: 90112, }, + { + name: "c3d-highcpu-4", + displayName: "c3d-highcpu-4", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 4, + ramMegabytes: 8000, + }, + { + name: "c3d-highcpu-8", + displayName: "c3d-highcpu-8", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 8, + ramMegabytes: 16000, + }, + { + name: "c3d-highcpu-16", + displayName: "c3d-highcpu-16", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 16, + ramMegabytes: 32000, + }, + { + name: "c3d-highcpu-60", + displayName: "c3d-highcpu-60", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 60, + ramMegabytes: 118000, + }, + { + name: "c3d-highcpu-90", + displayName: "c3d-highcpu-90", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 90, + ramMegabytes: 177000, + }, + { + name: "c3d-highcpu-180", + displayName: "c3d-highcpu-180", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 180, + ramMegabytes: 354000, + }, + { + name: "c3d-highcpu-360", + displayName: "c3d-highcpu-360", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 360, + ramMegabytes: 708000, + }, + { + name: "c3d-standard-4", + displayName: "c3d-standard-4", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 4, + ramMegabytes: 16000, + }, + { + name: "c3d-standard-8", + displayName: "c3d-standard-8", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 8, + ramMegabytes: 32000, + }, + { + name: "c3d-standard-16", + displayName: "c3d-standard-16", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 16, + ramMegabytes: 64000, + }, + { + name: "c3d-standard-30", + displayName: "c3d-standard-30", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 30, + ramMegabytes: 120000, + }, + { + name: "c3d-standard-60", + displayName: "c3d-standard-60", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 60, + ramMegabytes: 240000, + }, + { + name: "c3d-standard-90", + displayName: "c3d-standard-90", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 90, + ramMegabytes: 360000, + }, + { + name: "c3d-standard-180", + displayName: "c3d-standard-180", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 180, + ramMegabytes: 720000, + }, + { + name: "c3d-standard-360", + displayName: "c3d-standard-360", + supportedRegions: SUPPORTED_GCP_REGIONS.map((r) => r.name), + isGPU: false, + cpuCores: 360, + ramMegabytes: 1440000, + }, { name: "c3-highmem-4", displayName: "c3-highmem-4",