mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-19 07:15:23 +00:00
gcloud: Wed Jan 29 10:02:21 UTC 2025
This commit is contained in:
parent
861d4011dc
commit
50090ced80
157 changed files with 5563 additions and 179 deletions
|
|
@ -9,9 +9,10 @@ SYNOPSIS
|
|||
--network=[connect-mode=CONNECT-MODE],
|
||||
[name=NAME],[reserved-ip-range=RESERVED-IP-RANGE] [--async]
|
||||
[--description=DESCRIPTION] [--labels=[KEY=VALUE,...]]
|
||||
[--location=LOCATION] [--region=REGION]
|
||||
[--source-instance=SOURCE_INSTANCE] [--tags=[KEY=VALUE,...]]
|
||||
[--tier=TIER; default="BASIC_HDD"]
|
||||
[--location=LOCATION]
|
||||
[--performance=[max-iops=MAX-IOPS],[max-iops-per-tb=MAX-IOPS-PER-TB]]
|
||||
[--region=REGION] [--source-instance=SOURCE_INSTANCE]
|
||||
[--tags=[KEY=VALUE,...]] [--tier=TIER; default="BASIC_HDD"]
|
||||
[--deletion-protection
|
||||
: --deletion-protection-reason=DELETION_PROTECTION_REASON]
|
||||
[--kms-key=KMS_KEY : --kms-keyring=KMS_KEYRING
|
||||
|
|
@ -188,8 +189,7 @@ REQUIRED FLAGS
|
|||
network.
|
||||
connect-mode
|
||||
Network connection mode used by instances. CONNECT_MODE must be one
|
||||
of: DIRECT_PEERING, PRIVATE_SERVICE_ACCESS or
|
||||
PRIVATE_SERVICE_CONNECT.
|
||||
of: DIRECT_PEERING or PRIVATE_SERVICE_ACCESS.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
|
|
@ -210,6 +210,43 @@ OPTIONAL FLAGS
|
|||
--location=LOCATION
|
||||
Location of the Cloud Filestore instance/operation.
|
||||
|
||||
--performance=[max-iops=MAX-IOPS],[max-iops-per-tb=MAX-IOPS-PER-TB]
|
||||
Performance configuration for the instance. This flag is used to
|
||||
configure the read IOPS provisioned for the instance. The instance's
|
||||
write IOPS and read/write throughputs will be derived from the
|
||||
configured read IOPS. For more information about the derived
|
||||
performance limits and default performance see:
|
||||
https://cloud.google.com/filestore/docs/performance. Must be one of:
|
||||
|
||||
max-iops
|
||||
The number of IOPS to provision for the instance.
|
||||
MAX-IOPS must be in multiple of 1000 and in the supported IOPS
|
||||
range for the current capacity of the instance.
|
||||
For more details, see: https://cloud.google.com/filestore/docs/performance.
|
||||
|
||||
max-iops-per-tb
|
||||
Is used for setting the max IOPS of the instance by
|
||||
specifying the IOPS per TB. When this parameter is used, the
|
||||
max IOPS are derived from the instance capacity:
|
||||
The instance max IOPS will be calculated by multiplying the
|
||||
capacity of the instance (TB) by MAX-IOPS-PER-TB, and rounding
|
||||
to the nearest 1000. The max IOPS will be changed
|
||||
dynamically based on the instance capacity.
|
||||
MAX-IOPS-PER-TB must be in the supported range of the instance.
|
||||
For more details, see: https://cloud.google.com/filestore/docs/performance.
|
||||
|
||||
Examples:
|
||||
|
||||
Configure an instance with max-iops performance:
|
||||
|
||||
$ gcloud filestore instances create example-cluster \
|
||||
--performance=max-iops=17000
|
||||
|
||||
Configure an instance with max-iops-per-tb performance:
|
||||
|
||||
$ gcloud filestore instances create example-cluster \
|
||||
--performance=max-iops-per-tb=17000
|
||||
|
||||
--region=REGION
|
||||
Region of the Cloud Filestore instance.
|
||||
|
||||
|
|
|
|||
|
|
@ -3,8 +3,9 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud filestore instances update (INSTANCE : --zone=ZONE) [--async]
|
||||
[--description=DESCRIPTION] [--location=LOCATION] [--region=REGION]
|
||||
[--update-labels=[KEY=VALUE,...]]
|
||||
[--description=DESCRIPTION] [--location=LOCATION]
|
||||
[--performance=[max-iops=MAX-IOPS],[max-iops-per-tb=MAX-IOPS-PER-TB]]
|
||||
[--region=REGION] [--update-labels=[KEY=VALUE,...]]
|
||||
[--clear-labels | --remove-labels=[KEY,...]]
|
||||
[[--file-share=[capacity=CAPACITY],
|
||||
[name=NAME],[nfs-export-options=NFS-EXPORT-OPTIONS]
|
||||
|
|
@ -105,6 +106,43 @@ FLAGS
|
|||
--location=LOCATION
|
||||
Location of the Cloud Filestore instance/operation.
|
||||
|
||||
--performance=[max-iops=MAX-IOPS],[max-iops-per-tb=MAX-IOPS-PER-TB]
|
||||
Performance configuration for the instance. This flag is used to
|
||||
configure the read IOPS provisioned for the instance. The instance's
|
||||
write IOPS and read/write throughputs will be derived from the
|
||||
configured read IOPS. For more information about the derived
|
||||
performance limits and default performance see:
|
||||
https://cloud.google.com/filestore/docs/performance. Must be one of:
|
||||
|
||||
max-iops
|
||||
The number of IOPS to provision for the instance.
|
||||
MAX-IOPS must be in multiple of 1000 and in the supported IOPS
|
||||
range for the current capacity of the instance.
|
||||
For more details, see: https://cloud.google.com/filestore/docs/performance.
|
||||
|
||||
max-iops-per-tb
|
||||
Is used for setting the max IOPS of the instance by
|
||||
specifying the IOPS per TB. When this parameter is used, the
|
||||
max IOPS are derived from the instance capacity:
|
||||
The instance max IOPS will be calculated by multiplying the
|
||||
capacity of the instance (TB) by MAX-IOPS-PER-TB, and rounding
|
||||
to the nearest 1000. The max IOPS will be changed
|
||||
dynamically based on the instance capacity.
|
||||
MAX-IOPS-PER-TB must be in the supported range of the instance.
|
||||
For more details, see: https://cloud.google.com/filestore/docs/performance.
|
||||
|
||||
Examples:
|
||||
|
||||
Configure an instance with max-iops performance:
|
||||
|
||||
$ gcloud filestore instances update example-cluster \
|
||||
--performance=max-iops=17000
|
||||
|
||||
Configure an instance with max-iops-per-tb performance:
|
||||
|
||||
$ gcloud filestore instances update example-cluster \
|
||||
--performance=max-iops-per-tb=17000
|
||||
|
||||
--region=REGION
|
||||
Region of the Cloud Filestore instance.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue