mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-13 16:37:00 +00:00
gcloud: Wed May 7 10:56:18 UTC 2025
This commit is contained in:
parent
b03a332ad8
commit
dfebca5b6c
222 changed files with 6775 additions and 1046 deletions
|
|
@ -16,7 +16,7 @@ GROUPS
|
|||
GROUP is one of the following:
|
||||
|
||||
instances
|
||||
(ALPHA) Manage Instance resources.
|
||||
(ALPHA) Manage Lustre instance resources.
|
||||
|
||||
operations
|
||||
(ALPHA) Manage Operation resources.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances create - create instances
|
||||
gcloud alpha lustre instances create - creates a Managed Lustre instance
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances create (INSTANCE : --location=LOCATION)
|
||||
|
|
@ -10,12 +10,16 @@ SYNOPSIS
|
|||
[--request-id=REQUEST_ID] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Create an instance
|
||||
(ALPHA) Creates a Managed Lustre instance.
|
||||
|
||||
EXAMPLES
|
||||
To create the instance, run:
|
||||
To create an instance my-instance in location us-central1-a with 2048 Gib
|
||||
capacity run:
|
||||
|
||||
$ gcloud alpha lustre instances create
|
||||
$ gcloud alpha lustre instances create my-instance \
|
||||
--capacity-gib=2048 --location=us-central1-a \
|
||||
--network=projects/my-project/global/networks/default \
|
||||
--filesystem=lustrefs
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Instance resource - Identifier. The name of the instance. The arguments in
|
||||
|
|
|
|||
|
|
@ -1,17 +1,17 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances delete - delete instances
|
||||
gcloud alpha lustre instances delete - deletes a Managed Lustre instance
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances delete (INSTANCE : --location=LOCATION)
|
||||
[--async] [--request-id=REQUEST_ID] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Delete an instance
|
||||
(ALPHA) deletes a Managed Lustre instance.
|
||||
|
||||
EXAMPLES
|
||||
To delete the instance, run:
|
||||
to delete an instance my-instance run:
|
||||
|
||||
$ gcloud alpha lustre instances delete
|
||||
$ gcloud alpha lustre instances delete my-instance
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Instance resource - The resource name of the instance to delete, in the
|
||||
|
|
|
|||
|
|
@ -1,17 +1,20 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances describe - describe instances
|
||||
gcloud alpha lustre instances describe - gets details of a single Managed
|
||||
Lustre instance
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances describe (INSTANCE : --location=LOCATION)
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Describe an instance
|
||||
(ALPHA) Gets details of a single Managed Lustre instance.
|
||||
|
||||
EXAMPLES
|
||||
To describe the instance, run:
|
||||
To get the details of a single instance my-instance in location
|
||||
us-central1-a run:
|
||||
|
||||
$ gcloud alpha lustre instances describe
|
||||
$ gcloud alpha lustre instances describe my-instance \
|
||||
--location=us-central1-a
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Instance resource - The instance resource name, in the format
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances export-data - export instances
|
||||
gcloud alpha lustre instances export-data - exports data from Managed
|
||||
Lustre instance to Cloud Storage
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances export-data (INSTANCE : --location=LOCATION)
|
||||
|
|
@ -8,17 +9,20 @@ SYNOPSIS
|
|||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) export instances
|
||||
(ALPHA) Exports data from Managed Lustre instance to Cloud Storage.
|
||||
|
||||
EXAMPLES
|
||||
To export all instances, run:
|
||||
To export data from my-instance to gs://my-bucket storage run:
|
||||
|
||||
$ gcloud alpha lustre instances export-data
|
||||
$ gcloud alpha lustre instances export-data my-instance \
|
||||
--location=us-central-a --gcs-path-uri=gs://my-bucket \
|
||||
--lustre-path='/path/to/lustre/dir'
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Instance resource - Name of the resource. The arguments in this group can
|
||||
be used to specify the attributes of this resource. (NOTE) Some attributes
|
||||
are not given arguments in this group but can be set in other ways.
|
||||
Instance resource - The name of the Managed Lustre instance. The arguments
|
||||
in this group can be used to specify the attributes of this resource.
|
||||
(NOTE) Some attributes are not given arguments in this group but can be
|
||||
set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument instance on the command line with a fully
|
||||
|
|
@ -47,7 +51,9 @@ POSITIONAL ARGUMENTS
|
|||
|
||||
REQUIRED FLAGS
|
||||
--gcs-path-uri=GCS_PATH_URI
|
||||
URI to a Cloud Storage path in the format: gs://<bucket_name>.
|
||||
The URI to a Cloud Storage bucket, or a path within a bucket, using the
|
||||
format gs://<bucket_name>/<optional_path_inside_bucket>/. If a path
|
||||
inside the bucket is specified, it must end with a forward slash (/).
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
|
|
@ -55,8 +61,9 @@ OPTIONAL FLAGS
|
|||
complete.
|
||||
|
||||
--lustre-path=LUSTRE_PATH
|
||||
Root directory path to the Managed Lustre file system, starting with /.
|
||||
Defaults to / if unset.
|
||||
The root directory path to the Managed Lustre file system. Must start
|
||||
with /. Default is /. If you're importing data into Managed Lustre, any
|
||||
path other than the default must already exist on the file system.
|
||||
|
||||
--request-id=REQUEST_ID
|
||||
UUID to identify requests.
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances - manage Instance resources
|
||||
gcloud alpha lustre instances - manage Lustre instance resources
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Manage Instance resources.
|
||||
(ALPHA) Manage Lustre instance resources.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
|
@ -16,25 +16,25 @@ COMMANDS
|
|||
COMMAND is one of the following:
|
||||
|
||||
create
|
||||
(ALPHA) Create instances.
|
||||
(ALPHA) Creates a Managed Lustre instance.
|
||||
|
||||
delete
|
||||
(ALPHA) Delete instances.
|
||||
(ALPHA) deletes a Managed Lustre instance.
|
||||
|
||||
describe
|
||||
(ALPHA) Describe instances.
|
||||
(ALPHA) Gets details of a single Managed Lustre instance.
|
||||
|
||||
export-data
|
||||
(ALPHA) export instances.
|
||||
(ALPHA) Exports data from Managed Lustre instance to Cloud Storage.
|
||||
|
||||
import-data
|
||||
(ALPHA) import instances.
|
||||
(ALPHA) Imports data from Cloud Storage to Managed Lustre instance.
|
||||
|
||||
list
|
||||
(ALPHA) List instances.
|
||||
(ALPHA) List Lustre instances.
|
||||
|
||||
update
|
||||
(ALPHA) Update instances.
|
||||
(ALPHA) Updates the parameters of a single Managed Lustre instance.
|
||||
|
||||
NOTES
|
||||
This command is currently in alpha and might change without notice. If this
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances import-data - import instances
|
||||
gcloud alpha lustre instances import-data - imports data from Cloud Storage
|
||||
to Managed Lustre instance
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances import-data (INSTANCE : --location=LOCATION)
|
||||
|
|
@ -8,12 +9,14 @@ SYNOPSIS
|
|||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) import instances
|
||||
(ALPHA) Imports data from Cloud Storage to Managed Lustre instance.
|
||||
|
||||
EXAMPLES
|
||||
To import all instances, run:
|
||||
To import data from gs://my-bucket storage to my-instance run:
|
||||
|
||||
$ gcloud alpha lustre instances import-data
|
||||
$ gcloud alpha lustre instances import-data my-instance \
|
||||
--location=us-central-a --gcs-path-uri=gs://my_bucket \
|
||||
--lustre-path='/path/to/lustre/dir'
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Instance resource - Name of the resource. The arguments in this group can
|
||||
|
|
@ -47,7 +50,9 @@ POSITIONAL ARGUMENTS
|
|||
|
||||
REQUIRED FLAGS
|
||||
--gcs-path-uri=GCS_PATH_URI
|
||||
URI to a Cloud Storage path in the format: gs://<bucket_name>.
|
||||
The URI to a Cloud Storage bucket, or a path within a bucket, using the
|
||||
format gs://<bucket_name>/<optional_path_inside_bucket>/. If a path
|
||||
inside the bucket is specified, it must end with a forward slash (/).
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
|
|
@ -55,16 +60,17 @@ OPTIONAL FLAGS
|
|||
complete.
|
||||
|
||||
--lustre-path=LUSTRE_PATH
|
||||
Root directory path to the Managed Lustre file system, starting with /.
|
||||
Defaults to / if unset.
|
||||
The root directory path to the Managed Lustre file system. Must start
|
||||
with /. Default is /. If you're importing data into Managed Lustre, any
|
||||
path other than the default must already exist on the file system.
|
||||
|
||||
--request-id=REQUEST_ID
|
||||
UUID to identify requests.
|
||||
|
||||
ServiceAccount resource - User-specified service account used to perform
|
||||
the transfer. If unspecified, the default Lustre P4 service account will
|
||||
be used. This represents a Cloud resource. (NOTE) Some attributes are not
|
||||
given arguments in this group but can be set in other ways.
|
||||
the transfer. If unspecified, the default Managed Lustre service agent
|
||||
will be used. This represents a Cloud resource. (NOTE) Some attributes are
|
||||
not given arguments in this group but can be set in other ways.
|
||||
|
||||
To set the project attribute:
|
||||
◆ provide the argument --service-account on the command line with a
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances list - list instances
|
||||
gcloud alpha lustre instances list - list Lustre instances
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances list --location=LOCATION
|
||||
|
|
@ -7,12 +7,12 @@ SYNOPSIS
|
|||
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) List instances
|
||||
(ALPHA) List Managed Lustre instances.
|
||||
|
||||
EXAMPLES
|
||||
To list all instances, run:
|
||||
To list all instances in particular location us-central1-a run:
|
||||
|
||||
$ gcloud alpha lustre instances list
|
||||
$ gcloud alpha lustre instances list --location=us-central1-a
|
||||
|
||||
REQUIRED FLAGS
|
||||
Location resource - The project and location for which to retrieve a list
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
NAME
|
||||
gcloud alpha lustre instances update - update instances
|
||||
gcloud alpha lustre instances update - updates the parameters of a single
|
||||
Managed Lustre instance
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha lustre instances update (INSTANCE : --location=LOCATION)
|
||||
|
|
@ -12,12 +13,14 @@ SYNOPSIS
|
|||
| --remove-labels=[__REMOVE_LABELS,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Update an instance
|
||||
(ALPHA) Updates the parameters of a single Managed Lustre instance.
|
||||
|
||||
EXAMPLES
|
||||
To update the instance, run:
|
||||
To update the description of an instance my-instance in location
|
||||
us-central1-a run:
|
||||
|
||||
$ gcloud alpha lustre instances update
|
||||
$ gcloud alpha lustre instances update my-instance \
|
||||
--location=us-central1-a --description="<updated description>"
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Instance resource - Identifier. The name of the instance. The arguments in
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue