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

gcloud: Thu Feb 29 10:17:22 UTC 2024

This commit is contained in:
Automated 2024-02-29 10:17:22 +00:00
parent 8778dcbd7e
commit 37dd57701a
203 changed files with 3473 additions and 5938 deletions

View file

@ -68,7 +68,8 @@ SYNOPSIS
[--security-group=SECURITY_GROUP] [--security-posture=SECURITY_POSTURE]
[--services-ipv4-cidr=CIDR] [--services-secondary-range-name=NAME]
[--shielded-integrity-monitoring] [--shielded-secure-boot] [--spot]
[--stack-type=STACK_TYPE] [--subnetwork=SUBNETWORK]
[--stack-type=STACK_TYPE] [--storage-pools=STORAGE_POOL,[...]]
[--subnetwork=SUBNETWORK]
[--system-config-from-file=SYSTEM_CONFIG_FROM_FILE]
[--tags=TAG,[TAG,...]] [--threads-per-core=THREADS_PER_CORE]
[--workload-metadata=WORKLOAD_METADATA] [--workload-pool=WORKLOAD_POOL]
@ -1175,6 +1176,13 @@ FLAGS
IP stack type of the node VMs. STACK_TYPE must be one of: ipv4,
ipv4-ipv6.
--storage-pools=STORAGE_POOL,[...]
A list of storage pools where the cluster's boot disks will be
provisioned.
STORAGE_POOL must be in the format
projects/project/zones/zone/storagePools/storagePool
--subnetwork=SUBNETWORK
The Google Compute Engine subnetwork
(https://cloud.google.com/compute/docs/subnetworks) to which the
@ -1421,7 +1429,7 @@ FLAGS
At most one of these can be specified:
--dataplane-v2-observability-mode=DATAPLANE_V2_OBSERVABILITY_MODE
(DEPRECATED) Select Advanced Datapath Observability mode for the
(REMOVED) Select Advanced Datapath Observability mode for the
cluster. Defaults to DISABLED.
Advanced Datapath Observability allows for a real-time view into
@ -1438,10 +1446,7 @@ FLAGS
$ gcloud alpha container clusters create \
--dataplane-v2-observability-mode=EXTERNAL_LB
The --dataplane-v2-observability-mode flag is deprecated and will be
removed in an upcoming release. Please use
--enable-dataplane-v2-flow-observability or
--disable-dataplane-v2-flow-observability.
Flag --dataplane-v2-observability-mode has been removed.
DATAPLANE_V2_OBSERVABILITY_MODE must be one of:

View file

@ -404,7 +404,7 @@ FLAGS
At most one of these can be specified:
--dataplane-v2-observability-mode=DATAPLANE_V2_OBSERVABILITY_MODE
(DEPRECATED) Select Advanced Datapath Observability mode for the
(REMOVED) Select Advanced Datapath Observability mode for the
cluster. Defaults to DISABLED.
Advanced Datapath Observability allows for a real-time view into
@ -421,10 +421,7 @@ FLAGS
$ gcloud alpha container clusters create-auto \
--dataplane-v2-observability-mode=EXTERNAL_LB
The --dataplane-v2-observability-mode flag is deprecated and will be
removed in an upcoming release. Please use
--enable-dataplane-v2-flow-observability or
--disable-dataplane-v2-flow-observability.
Flag --dataplane-v2-observability-mode has been removed.
DATAPLANE_V2_OBSERVABILITY_MODE must be one of:

View file

@ -966,7 +966,7 @@ REQUIRED FLAGS
At most one of these can be specified:
--dataplane-v2-observability-mode=DATAPLANE_V2_OBSERVABILITY_MODE
(DEPRECATED) Select Advanced Datapath Observability mode for the
(REMOVED) Select Advanced Datapath Observability mode for the
cluster. Defaults to DISABLED.
Advanced Datapath Observability allows for a real-time view into
@ -983,10 +983,7 @@ REQUIRED FLAGS
$ gcloud alpha container clusters update \
--dataplane-v2-observability-mode=EXTERNAL_LB
The --dataplane-v2-observability-mode flag is deprecated and will
be removed in an upcoming release. Please use
--enable-dataplane-v2-flow-observability or
--disable-dataplane-v2-flow-observability.
Flag --dataplane-v2-observability-mode has been removed.
DATAPLANE_V2_OBSERVABILITY_MODE must be one of:

View file

@ -47,6 +47,7 @@ SYNOPSIS
[--standard-rollout-policy=[batch-node-count=BATCH_NODE_COUNT,
batch-percent=BATCH_NODE_PERCENTAGE,
batch-soak-duration=BATCH_SOAK_DURATION,...]]
[--storage-pools=STORAGE_POOL,[...]]
[--system-config-from-file=SYSTEM_CONFIG_FROM_FILE]
[--tags=TAG,[TAG,...]] [--threads-per-core=THREADS_PER_CORE]
[--tpu-topology=TPU_TOPOLOGY] [--windows-os-version=WINDOWS_OS_VERSION]
@ -634,6 +635,13 @@ FLAGS
--standard-rollout-policy=batch-percent=0.3,\
batch-soak-duration=60s
--storage-pools=STORAGE_POOL,[...]
A list of storage pools where the node pool's boot disks will be
provisioned.
STORAGE_POOL must be in the format
projects/project/zones/zone/storagePools/storagePool
--system-config-from-file=SYSTEM_CONFIG_FROM_FILE
Path of the YAML/JSON file that contains the node configuration,
including Linux kernel parameters (sysctls) and kubelet configs.

View file

@ -11,8 +11,8 @@ DESCRIPTION
(ALPHA) gcloud alpha container node-pools delete deletes a node pool from a
Google Kubernetes Engine (GKE) cluster. When you delete a node pool, GKE
drains all the nodes in the node pool. The draining process involves GKE
evicting Pods on each node in the node pool. Each node in a node pool is
drained by evicting Pods with an allotted graceful termination period of
deleting Pods on each node in the node pool. Each node in a node pool is
drained by deleting Pods with an allotted graceful termination period of
MAX_POD. MAX_POD is the maximum terminationGracePeriodSeconds set on the
Pods scheduled to the node with a cap of one hour.