GCP: Add more N2D VMs to supported list (#6)

This commit is contained in:
Nils Hanke 2022-08-29 00:50:40 -07:00 committed by GitHub
parent 6b6b6df7e1
commit 6da228758c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 0 deletions

View File

@ -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
<!-- For changes in existing functionality. -->

View File

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