From 6da228758c4fc2fa297576963c13b2ca6b66debc Mon Sep 17 00:00:00 2001 From: Nils Hanke Date: Mon, 29 Aug 2022 00:50:40 -0700 Subject: [PATCH] GCP: Add more N2D VMs to supported list (#6) --- CHANGELOG.md | 1 + cli/internal/gcp/instancetypes.go | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6510f4b6..2ff84219b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Implement SSH peer to peer distribution between debugd nodes. - GCP service account can now be managed manually. - CoreOS images are publicly available for Azure. +- GCP: Support for higher end N2D standard (128 & 224 vCPUs), *high-mem* and *high-cpu* VMs ### Changed diff --git a/cli/internal/gcp/instancetypes.go b/cli/internal/gcp/instancetypes.go index cf8ec1101..7f4ce6069 100644 --- a/cli/internal/gcp/instancetypes.go +++ b/cli/internal/gcp/instancetypes.go @@ -11,4 +11,25 @@ var InstanceTypes = []string{ "n2d-standard-64", "n2d-standard-80", "n2d-standard-96", + "n2d-standard-128", + "n2d-standard-224", + "n2d-highmem-2", + "n2d-highmem-4", + "n2d-highmem-8", + "n2d-highmem-16", + "n2d-highmem-32", + "n2d-highmem-48", + "n2d-highmem-64", + "n2d-highmem-80", + "n2d-highmem-96", + "n2d-highcpu-4", + "n2d-highcpu-8", + "n2d-highcpu-16", + "n2d-highcpu-32", + "n2d-highcpu-48", + "n2d-highcpu-64", + "n2d-highcpu-80", + "n2d-highcpu-96", + "n2d-highcpu-128", + "n2d-highcpu-224", }