1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-08 02:25:19 +00:00

gcloud: Wed May 7 10:56:18 UTC 2025

This commit is contained in:
Automated 2025-05-07 10:56:18 +00:00
parent b03a332ad8
commit dfebca5b6c
222 changed files with 6775 additions and 1046 deletions

View file

@ -1,5 +1,5 @@
NAME
gcloud lustre instances create - create instances
gcloud lustre instances create - creates a Managed Lustre instance
SYNOPSIS
gcloud lustre instances create (INSTANCE : --location=LOCATION)
@ -10,12 +10,16 @@ SYNOPSIS
[--request-id=REQUEST_ID] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Create an instance
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 lustre instances create
$ gcloud 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

View file

@ -1,17 +1,17 @@
NAME
gcloud lustre instances delete - delete instances
gcloud lustre instances delete - deletes a Managed Lustre instance
SYNOPSIS
gcloud lustre instances delete (INSTANCE : --location=LOCATION) [--async]
[--request-id=REQUEST_ID] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Delete an instance
Deletes a Managed Lustre instance.
EXAMPLES
To delete the instance, run:
to delete an instance my-instance run:
$ gcloud lustre instances delete
$ gcloud lustre instances delete my-instance
POSITIONAL ARGUMENTS
Instance resource - The resource name of the instance to delete, in the

View file

@ -1,17 +1,20 @@
NAME
gcloud lustre instances describe - describe instances
gcloud lustre instances describe - gets details of a single Managed Lustre
instance
SYNOPSIS
gcloud lustre instances describe (INSTANCE : --location=LOCATION)
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Describe an instance
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 lustre instances describe
$ gcloud lustre instances describe my-instance \
--location=us-central1-a
POSITIONAL ARGUMENTS
Instance resource - The instance resource name, in the format

View file

@ -1,5 +1,6 @@
NAME
gcloud lustre instances export-data - export instances
gcloud lustre instances export-data - exports data from Managed Lustre
instance to Cloud Storage
SYNOPSIS
gcloud lustre instances export-data (INSTANCE : --location=LOCATION)
@ -8,12 +9,14 @@ SYNOPSIS
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
export instances
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 lustre instances export-data
$ gcloud 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 - The name of the Managed Lustre instance. The arguments

View file

@ -16,25 +16,25 @@ COMMANDS
COMMAND is one of the following:
create
Create instances.
Creates a Managed Lustre instance.
delete
Delete instances.
Deletes a Managed Lustre instance.
describe
Describe instances.
Gets details of a single Managed Lustre instance.
export-data
export instances.
Exports data from Managed Lustre instance to Cloud Storage.
import-data
import instances.
Imports data from Cloud Storage to Managed Lustre instance.
list
List instances.
List Lustre instances.
update
Update instances.
Updates the parameters of a single Managed Lustre instance.
NOTES
This variant is also available:

View file

@ -1,5 +1,6 @@
NAME
gcloud lustre instances import-data - import instances
gcloud lustre instances import-data - imports data from Cloud Storage to
Managed Lustre instance
SYNOPSIS
gcloud lustre instances import-data (INSTANCE : --location=LOCATION)
@ -8,12 +9,14 @@ SYNOPSIS
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
import instances
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 lustre instances import-data
$ gcloud 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

View file

@ -1,5 +1,5 @@
NAME
gcloud lustre instances list - list instances
gcloud lustre instances list - list Lustre instances
SYNOPSIS
gcloud lustre instances list --location=LOCATION [--filter=EXPRESSION]
@ -7,12 +7,12 @@ SYNOPSIS
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
List instances
List Managed Lustre instances.
EXAMPLES
To list all instances, run:
To list all instances in particular location us-central1-a run:
$ gcloud lustre instances list
$ gcloud lustre instances list --location=us-central1-a
REQUIRED FLAGS
Location resource - The project and location for which to retrieve a list

View file

@ -1,5 +1,6 @@
NAME
gcloud lustre instances update - update instances
gcloud lustre instances update - updates the parameters of a single Managed
Lustre instance
SYNOPSIS
gcloud lustre instances update (INSTANCE : --location=LOCATION) [--async]
@ -12,12 +13,14 @@ SYNOPSIS
| --remove-labels=[__REMOVE_LABELS,...]] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Update an instance
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 lustre instances update
$ gcloud 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