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", }