1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 06:47:12 +00:00

gcloud: Tue Mar 1 21:43:54 UTC 2022

This commit is contained in:
Automated 2022-03-01 21:43:54 +00:00
parent c1c3b75313
commit 21878eea72
1018 changed files with 4838 additions and 3409 deletions

View file

@ -8,8 +8,9 @@ SYNOPSIS
[--boot-disk-kms-key=BOOT_DISK_KMS_KEY] [--cluster=CLUSTER]
[--disk-size=DISK_SIZE] [--disk-type=DISK_TYPE]
[--enable-autoprovisioning] [--enable-autorepair]
[--no-enable-autoupgrade] [--enable-gvnic] [--enable-image-streaming]
[--image-type=IMAGE_TYPE] [--linux-sysctls=KEY=VALUE,[KEY=VALUE,...]]
[--no-enable-autoupgrade] [--enable-confidential-nodes]
[--enable-gvnic] [--enable-image-streaming] [--image-type=IMAGE_TYPE]
[--linux-sysctls=KEY=VALUE,[KEY=VALUE,...]]
[--machine-type=MACHINE_TYPE, -m MACHINE_TYPE]
[--max-pods-per-node=MAX_PODS_PER_NODE]
[--max-surge-upgrade=MAX_SURGE_UPGRADE; default=1]
@ -126,6 +127,11 @@ FLAGS
Enabled by default, use --no-enable-autoupgrade to disable.
--enable-confidential-nodes
Enable confidential nodes for the node pool. Enabling Confidential
Nodes will create nodes using Confidential VM
https://cloud.google.com/compute/confidential-vm/docs/about-cvm.
--enable-gvnic
Enable the use of GVNIC for this cluster. Requires re-creation of nodes
using either a node-pool upgrade or node-pool creation.
@ -309,6 +315,7 @@ FLAGS
Multiple locations can be specified, separated by commas. For example:
$ gcloud alpha container node-pools create node-pool-1 \
--cluster=sample-cluster \
--node-locations=us-central1-a,us-central1-b
--node-taints=[NODE_TAINT,...]

View file

@ -4,9 +4,9 @@ NAME
SYNOPSIS
gcloud alpha container node-pools update NAME
(--enable-gvnic | --enable-image-streaming
| --node-labels=[NODE_LABEL,...] | --node-locations=ZONE,[ZONE,...]
| --node-taints=[NODE_TAINT,...]
(--enable-confidential-nodes | --enable-gvnic
| --enable-image-streaming | --node-labels=[NODE_LABEL,...]
| --node-locations=ZONE,[ZONE,...] | --node-taints=[NODE_TAINT,...]
| --system-config-from-file=SYSTEM_CONFIG_FROM_FILE
| --tags=[TAG,...] | --workload-metadata=WORKLOAD_METADATA
| --enable-autoprovisioning
@ -35,6 +35,10 @@ POSITIONAL ARGUMENTS
REQUIRED FLAGS
Exactly one of these must be specified:
--enable-confidential-nodes
Recreate all the nodes in the node pool to be confidential VM
https://cloud.google.com/compute/confidential-vm/docs/about-cvm.
--enable-gvnic
Enable the use of GVNIC for this cluster. Requires re-creation of
nodes using either a node-pool upgrade or node-pool creation.
@ -72,6 +76,7 @@ REQUIRED FLAGS
example:
$ gcloud alpha container node-pools update node-pool-1 \
--cluster=sample-cluster \
--node-locations=us-central1-a,us-central1-b
--node-taints=[NODE_TAINT,...]