1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-15 17:35:31 +00:00

gcloud: Wed Apr 26 10:24:37 UTC 2023

This commit is contained in:
Automated 2023-04-26 10:24:37 +00:00
parent b33a8a3e6e
commit 2ae1bc2b12
276 changed files with 6093 additions and 833 deletions

View file

@ -6,11 +6,12 @@ SYNOPSIS
gcloud alpha container aws node-pools create
(NODE_POOL : --cluster=CLUSTER --location=LOCATION)
--config-encryption-kms-key-arn=CONFIG_ENCRYPTION_KMS_KEY_ARN
--iam-instance-profile=IAM_INSTANCE_PROFILE --node-version=NODE_VERSION
--subnet-id=SUBNET_ID [--annotations=ANNOTATION,[ANNOTATION,...]]
[--async] [--image-type=IMAGE_TYPE]
--iam-instance-profile=IAM_INSTANCE_PROFILE
--max-pods-per-node=MAX_PODS_PER_NODE --node-version=NODE_VERSION
--subnet-id=SUBNET_ID (--max-nodes=MAX_NODES --min-nodes=MIN_NODES)
[--annotations=ANNOTATION,[ANNOTATION,...]] [--async]
[--enable-autorepair] [--image-type=IMAGE_TYPE]
[--instance-placement=INSTANCE_PLACEMENT]
[--max-pods-per-node=MAX_PODS_PER_NODE]
[--node-labels=NODE_LABEL,[NODE_LABEL,...]]
[--node-taints=NODE_TAINT,[NODE_TAINT,...]]
[--root-volume-iops=ROOT_VOLUME_IOPS]
@ -24,7 +25,6 @@ SYNOPSIS
: --autoscaling-metrics=[AUTOSCALING_METRIC,...]]
[--instance-type=INSTANCE_TYPE
| --spot-instance-types=[INSTANCE_TYPE,...]]
[--max-nodes=MAX_NODES --min-nodes=MIN_NODES]
[--proxy-secret-arn=PROXY_SECRET_ARN
--proxy-secret-version-id=PROXY_SECRET_VERSION_ID]
[GCLOUD_WIDE_FLAG ...]
@ -82,12 +82,31 @@ REQUIRED FLAGS
--iam-instance-profile=IAM_INSTANCE_PROFILE
Name or ARN of the IAM instance profile associated with the node pool.
--max-pods-per-node=MAX_PODS_PER_NODE
Maximum number of pods per node.
--node-version=NODE_VERSION
Kubernetes version to use for the node pool.
--subnet-id=SUBNET_ID
Subnet ID of an existing VNET to use for the node pool.
Node pool autoscaling
This must be specified.
--max-nodes=MAX_NODES
Maximum number of nodes in the node pool.
This flag argument must be specified if any of the other arguments in
this group are specified.
--min-nodes=MIN_NODES
Minimum number of nodes in the node pool.
This flag argument must be specified if any of the other arguments in
this group are specified.
OPTIONAL FLAGS
--annotations=ANNOTATION,[ANNOTATION,...]
Annotations for the node pool.
@ -96,6 +115,14 @@ OPTIONAL FLAGS
Return immediately, without waiting for the operation in progress to
complete.
--enable-autorepair
Enable node autorepair feature for a node pool. Use
--no-enable-autorepair to disable.
$ gcloud alpha container aws node-pools create --enable-autorepair
Node autorepair is disabled by default.
--image-type=IMAGE_TYPE
Set the OS image type to use on node pool instances.
@ -108,9 +135,6 @@ OPTIONAL FLAGS
Type of the tenancy. INSTANCE_PLACEMENT must be one of: dedicated,
default, host.
--max-pods-per-node=MAX_PODS_PER_NODE
Maximum number of pods per node.
--node-labels=NODE_LABEL,[NODE_LABEL,...]
Labels assigned to nodes of the node pool.
@ -179,20 +203,6 @@ OPTIONAL FLAGS
(https://github.com/aws/amazon-ec2-instance-selector) to choose
instance types with matching CPU and memory configurations.
Node pool autoscaling
--max-nodes=MAX_NODES
Maximum number of nodes in the node pool.
This flag argument must be specified if any of the other arguments in
this group are specified.
--min-nodes=MIN_NODES
Minimum number of nodes in the node pool.
This flag argument must be specified if any of the other arguments in
this group are specified.
Proxy config
--proxy-secret-arn=PROXY_SECRET_ARN

View file

@ -6,7 +6,7 @@ SYNOPSIS
gcloud alpha container aws node-pools update
(NODE_POOL : --cluster=CLUSTER --location=LOCATION) [--async]
[--config-encryption-kms-key-arn=CONFIG_ENCRYPTION_KMS_KEY_ARN]
[--iam-instance-profile=IAM_INSTANCE_PROFILE]
[--enable-autorepair] [--iam-instance-profile=IAM_INSTANCE_PROFILE]
[--node-version=NODE_VERSION] [--root-volume-iops=ROOT_VOLUME_IOPS]
[--root-volume-kms-key-arn=ROOT_VOLUME_KMS_KEY_ARN]
[--root-volume-size=ROOT_VOLUME_SIZE]
@ -76,6 +76,12 @@ FLAGS
--config-encryption-kms-key-arn=CONFIG_ENCRYPTION_KMS_KEY_ARN
Amazon Resource Name (ARN) of the AWS KMS key to encrypt the user data.
--enable-autorepair
Enable node autorepair feature for a node pool. Use
--no-enable-autorepair to disable.
$ gcloud alpha container aws node-pools update --enable-autorepair
--iam-instance-profile=IAM_INSTANCE_PROFILE
Name or ARN of the IAM instance profile associated with the node pool.