mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 14:56:05 +00:00
gcloud: Thu Jan 19 00:56:33 UTC 2023
This commit is contained in:
parent
348d9760ee
commit
1248f773ec
1462 changed files with 51835 additions and 5402 deletions
|
|
@ -19,7 +19,10 @@ SYNOPSIS
|
|||
[--root-volume-type=ROOT_VOLUME_TYPE]
|
||||
[--security-group-ids=[SECURITY_GROUP_ID,...]]
|
||||
[--ssh-ec2-key-pair=SSH_EC2_KEY_PAIR] [--tags=TAG,[TAG,...]]
|
||||
[--validate-only] [--max-nodes=MAX_NODES --min-nodes=MIN_NODES]
|
||||
[--validate-only]
|
||||
[--autoscaling-metrics-granularity=AUTOSCALING_METRICS_GRANULARITY
|
||||
: --autoscaling-metrics=[AUTOSCALING_METRIC,...]]
|
||||
[--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 ...]
|
||||
|
|
@ -148,6 +151,21 @@ OPTIONAL FLAGS
|
|||
--validate-only
|
||||
Validate the node pool to create, but don't actually perform it.
|
||||
|
||||
Node pool autoscaling metrics collection
|
||||
|
||||
--autoscaling-metrics-granularity=AUTOSCALING_METRICS_GRANULARITY
|
||||
Frequency at which EC2 Auto Scaling sends aggregated data to AWS
|
||||
CloudWatch. The only valid value is "1Minute".
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--autoscaling-metrics=[AUTOSCALING_METRIC,...]
|
||||
Autoscaling metrics to enable. For a list of valid metrics, refer to
|
||||
https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_EnableMetricsCollection.html.
|
||||
If granularity is specified but not any metrics, all metrics are
|
||||
enabled.
|
||||
|
||||
Node pool autoscaling
|
||||
|
||||
--max-nodes=MAX_NODES
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud alpha container aws node-pools delete
|
||||
(NODE_POOL : --cluster=CLUSTER --location=LOCATION) [--async]
|
||||
[--validate-only] [GCLOUD_WIDE_FLAG ...]
|
||||
(NODE_POOL : --cluster=CLUSTER --location=LOCATION) [--allow-missing]
|
||||
[--async] [--validate-only] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Delete a node pool in an Anthos cluster on AWS.
|
||||
|
|
@ -52,6 +52,10 @@ POSITIONAL ARGUMENTS
|
|||
▸ set the property container_aws/location.
|
||||
|
||||
FLAGS
|
||||
--allow-missing
|
||||
Allow idempotent deletion of cluster. The request will still succeed in
|
||||
case the cluster does not exist.
|
||||
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
|
|
|||
|
|
@ -12,11 +12,15 @@ SYNOPSIS
|
|||
[--root-volume-size=ROOT_VOLUME_SIZE]
|
||||
[--root-volume-type=ROOT_VOLUME_TYPE] [--validate-only]
|
||||
[--annotations=ANNOTATION,[ANNOTATION,...] | --clear-annotations]
|
||||
[--clear-autoscaling-metrics
|
||||
| --autoscaling-metrics=[AUTOSCALING_METRIC,...]
|
||||
--autoscaling-metrics-granularity=AUTOSCALING_METRICS_GRANULARITY]
|
||||
[--clear-proxy-config | --proxy-secret-arn=PROXY_SECRET_ARN
|
||||
--proxy-secret-version-id=PROXY_SECRET_VERSION_ID]
|
||||
[--clear-security-group-ids
|
||||
| --security-group-ids=[SECURITY_GROUP_ID,...]]
|
||||
[--clear-ssh-ec2-key-pair | --ssh-ec2-key-pair=SSH_EC2_KEY_PAIR]
|
||||
[--clear-tags | --tags=TAG,[TAG,...]]
|
||||
[--max-nodes=MAX_NODES --min-nodes=MIN_NODES] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
|
|
@ -107,6 +111,27 @@ FLAGS
|
|||
--clear-annotations
|
||||
Clear the annotations for the node pool.
|
||||
|
||||
Node pool autoscaling metrics collection
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--clear-autoscaling-metrics
|
||||
Clear the cloudwatch autoscaling metrics collection associated with
|
||||
the nodepool.
|
||||
|
||||
Update existing cloudwatch autoscaling metrics collection parameters
|
||||
|
||||
--autoscaling-metrics=[AUTOSCALING_METRIC,...]
|
||||
Autoscaling metrics to enable. For a list of valid metrics, refer
|
||||
to
|
||||
https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_EnableMetricsCollection.html.
|
||||
If granularity is specified but not any metrics, all metrics are
|
||||
enabled.
|
||||
|
||||
--autoscaling-metrics-granularity=AUTOSCALING_METRICS_GRANULARITY
|
||||
Frequency at which EC2 Auto Scaling sends aggregated data to AWS
|
||||
CloudWatch. The only valid value is "1Minute".
|
||||
|
||||
Proxy config
|
||||
|
||||
At most one of these can be specified:
|
||||
|
|
@ -146,6 +171,19 @@ FLAGS
|
|||
Name of the EC2 key pair authorized to login to the node pool's
|
||||
nodes.
|
||||
|
||||
Tags
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--clear-tags
|
||||
Clear any tags associated with the node pool's nodes.
|
||||
|
||||
--tags=TAG,[TAG,...]
|
||||
Applies the given tags (comma separated) on the node pool. Example:
|
||||
|
||||
$ gcloud alpha container aws node-pools update EXAMPLE_NODE_POOL \
|
||||
--tags=tag1=one,tag2=two
|
||||
|
||||
Node pool autoscaling
|
||||
|
||||
--max-nodes=MAX_NODES
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue