mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-17 14:26:34 +00:00
gcloud: Wed Apr 26 10:24:37 UTC 2023
This commit is contained in:
parent
b33a8a3e6e
commit
2ae1bc2b12
276 changed files with 6093 additions and 833 deletions
|
|
@ -13,8 +13,8 @@ SYNOPSIS
|
|||
--subnet-ids=[SUBNET_ID,...] --vpc-id=VPC_ID
|
||||
[--admin-users=USER,[USER,...]]
|
||||
[--annotations=ANNOTATION,[ANNOTATION,...]] [--async]
|
||||
[--description=DESCRIPTION] [--instance-type=INSTANCE_TYPE]
|
||||
[--logging=COMPONENT,[COMPONENT,...]]
|
||||
[--description=DESCRIPTION] [--enable-managed-prometheus]
|
||||
[--instance-type=INSTANCE_TYPE] [--logging=COMPONENT,[COMPONENT,...]]
|
||||
[--main-volume-iops=MAIN_VOLUME_IOPS]
|
||||
[--main-volume-kms-key-arn=MAIN_VOLUME_KMS_KEY_ARN]
|
||||
[--main-volume-size=MAIN_VOLUME_SIZE]
|
||||
|
|
@ -127,6 +127,9 @@ OPTIONAL FLAGS
|
|||
--description=DESCRIPTION
|
||||
Description for the cluster.
|
||||
|
||||
--enable-managed-prometheus
|
||||
Enable managed collection for Managed Service for Prometheus.
|
||||
|
||||
--instance-type=INSTANCE_TYPE
|
||||
AWS EC2 instance type for the control plane's nodes.
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,9 @@ SYNOPSIS
|
|||
[--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,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
[--clear-tags | --tags=TAG,[TAG,...]]
|
||||
[--disable-managed-prometheus | --enable-managed-prometheus]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Update an Anthos cluster on AWS.
|
||||
|
|
@ -189,6 +191,16 @@ FLAGS
|
|||
$ gcloud container aws clusters update EXAMPLE_CONTROL_PLANE \
|
||||
--tags=tag1=one,tag2=two
|
||||
|
||||
Monitoring Config
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--disable-managed-prometheus
|
||||
Disable managed collection for Managed Service for Prometheus.
|
||||
|
||||
--enable-managed-prometheus
|
||||
Enable managed collection for Managed Service for Prometheus.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
|
|
|
|||
|
|
@ -6,10 +6,11 @@ SYNOPSIS
|
|||
gcloud 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] [--instance-type=INSTANCE_TYPE]
|
||||
[--max-pods-per-node=MAX_PODS_PER_NODE]
|
||||
--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]
|
||||
[--instance-type=INSTANCE_TYPE]
|
||||
[--node-labels=NODE_LABEL,[NODE_LABEL,...]]
|
||||
[--node-taints=NODE_TAINT,[NODE_TAINT,...]]
|
||||
[--root-volume-iops=ROOT_VOLUME_IOPS]
|
||||
|
|
@ -21,7 +22,6 @@ SYNOPSIS
|
|||
[--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 ...]
|
||||
|
|
@ -79,12 +79,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.
|
||||
|
|
@ -98,9 +117,6 @@ OPTIONAL FLAGS
|
|||
--instance-type=INSTANCE_TYPE
|
||||
AWS EC2 instance type for the node pool's nodes.
|
||||
|
||||
--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.
|
||||
|
||||
|
|
@ -155,20 +171,6 @@ OPTIONAL FLAGS
|
|||
If granularity is specified but not any metrics, all metrics are
|
||||
enabled.
|
||||
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue