Skip to content

add nested virtualization, boot disk size, and pool size to boost #18310

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions website/docs/r/workstations_workstation_config.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -465,8 +465,11 @@ resource "google_workstations_workstation_config" "default" {
}
}
boost_configs {
id = "boost-1"
machine_type = "e2-standard-2"
id = "boost-2"
machine_type = "n1-standard-2"
pool_size = 2
boot_disk_size_gb = 30
enable_nested_virtualization = true
}
}
}
Expand Down Expand Up @@ -766,6 +769,19 @@ The following arguments are supported:
(Optional)
The type of machine that boosted VM instances will use—for example, e2-standard-4. For more information about machine types that Cloud Workstations supports, see the list of available machine types https://cloud.google.com/workstations/docs/available-machine-types. Defaults to e2-standard-4.

* `boot_disk_size_gb` -
(Optional)
Size of the boot disk in GB. The minimum boot disk size is `30` GB. Defaults to `50` GB.

* `enable_nested_virtualization` -
(Optional)
Whether to enable nested virtualization on the Compute Engine VMs backing boosted Workstations.
See https://cloud.google.com/workstations/docs/reference/rest/v1beta/projects.locations.workstationClusters.workstationConfigs#GceInstance.FIELDS.enable_nested_virtualization

* `pool_size` -
(Optional)
Number of instances to pool for faster workstation boosting.

* `accelerators` -
(Optional)
An accelerator card attached to the boost instance.
Expand Down