1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 23:02:07 +02:00
tldr/pages/common/gcloud-compute.md
Farhad Koushan 0ce0a6c094
gcloud-*: add pages (#11625)
* gcloud-*: add pages

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2024-01-08 19:29:32 +05:30

37 lines
846 B
Markdown

# gcloud compute
> Create, run, and manage VMs on Google Cloud infrastructure.
> See also: `gcloud`.
> More information: <https://cloud.google.com/sdk/gcloud/reference/compute>.
- List Compute Engine zones:
`gcloud compute zones list`
- Create a VM instance:
`gcloud compute instances create {{instance_name}}`
- Display a VM instance's details:
`gcloud compute instances describe {{instance_name}}`
- List all VM instances in a project:
`gcloud compute instances list`
- Create a snapshot of a persistent disk:
`gcloud compute disks snapshot {{disk_name}} --snapshot-names {{snapshot_name}}`
- Display a snapshot's details:
`gcloud compute snapshots describe {{snapshot_name}}`
- Delete a snapshot:
`gcloud compute snapshots delete {{snapshot_name}}`
- Connect to a VM instance using SSH:
`gcloud compute ssh {{instance_name}}`