1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 14:56:05 +00:00

gcloud: Wed Aug 31 09:34:57 UTC 2022

This commit is contained in:
Automated 2022-08-31 09:34:57 +00:00
parent 978ed239f6
commit 6749f65ca2
Failed to extract signature
159 changed files with 2919 additions and 561 deletions

View file

@ -129,8 +129,8 @@ OPTIONAL FLAGS
components in. This namespace does not need to exist.
--pools=[KEY=VALUE[;VALUE],...]
Each --pools flag represents a single GKE node pool associated with the
virtual cluster. It is comprised of a CSV in the form
Each --pools flag represents a GKE node pool associated with the
virtual cluster. It is a comma-separated list in the form
KEY=VALUE[;VALUE], where certain keys may have multiple values.
The following KEYs must be specified:
@ -140,36 +140,39 @@ OPTIONAL FLAGS
------ ---------------- ------------------------ ----------------------------------------------------------
name string `my-node-pool` Name of the node pool.
roles repeated string `default;spark-driver` Roles that this node pool should perform. Valid values are
`default`, `controller`, `spark-driver`, `spark-executor`.
roles repeated string `default;spark-driver` Roles that each node pool will perform.
[One Pool must have DEFAULT role] Valid values are
`default`, `controller`, `spark-driver`, `spark-executor`.
-----------------------------------------------------------------------------------------------------------
The following KEYs may be specified:
----------------------------------------------------------------------------------------------------------------------------------------------------------------
KEY Type Example Description
KEY Type Example Description
--------------- ---------------- --------------------------------------------- ---------------------------------------------------------------------------------
machineType string `n1-standard-8` Compute Engine machine type to use.
machineType string `n1-standard-8` Compute Engine machine type to use.
preemptible boolean `false` If true, then this node pool uses preemptible VMs.
This cannot be true on the node pool with the `controllers` role
(or `default` role if `controllers` role is not specified).
preemptible boolean `false` If true, then this node pool uses preemptible VMs.
This Must be `false` for a node pool with the CONTROLLER role or
for a node pool with the DEFAULT role in no node pool has the CONTROLLER role.
localSsdCount int `2` The number of local SSDs to attach to each node.
localSsdCount int `2` The number of local SSDs to attach to each node.
accelerator repeated string `nvidia-tesla-a100=1` Accelerators to attach to each node. In the format NAME=COUNT.
localNvmeSsdCount int `2` The number of local NVMe SSDs to attach to each node.
minCpuPlatform string `Intel Skylake` Minimum CPU platform for each node.
accelerator repeated string `nvidia-tesla-a100=1` Accelerators to attach to each node, in NODE=COUNT format.
bootDiskKmsKey string `projects/project-id/locations/us-central1 The Customer Managed Encryption Key (CMEK) used to encrypt
/keyRings/keyRing-name/cryptoKeys/key-name` the boot disk attached to each node in the node pool.
minCpuPlatform string `Intel Skylake` Minimum CPU platform for each node.
locations repeated string `us-west1-a;us-west1-c` Zones within the location of the GKE cluster.
All `--pools` flags for a single Dataproc cluster must have identical locations.
bootDiskKmsKey string `projects/project-id/locations/us-central1 The Customer Managed Encryption Key (CMEK) used to encrypt
/keyRings/keyRing-name/cryptoKeys/key-name` the boot disk attached to each node in the node pool.
min int `0` Minimum number of nodes per zone that this node pool can scale down to.
locations repeated string `us-west1-a;us-west1-c` Zones within the location of the GKE cluster.
All `--pools` flags for a Dataproc cluster must have identical locations.
max int `10` Maximum number of nodes per zone that this node pool can scale up to.
min int `0` Minimum number of nodes per zone that this node pool can scale down to.
max int `10` Maximum number of nodes per zone that this node pool can scale up to.
----------------------------------------------------------------------------------------------------------------------------------------------------------------
--properties=[PREFIX:PROPERTY=VALUE,...]