logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Create GCP VMs - Manage Instances with gcloud compute | Online Free DevTools by Hexmos

Create GCP VMs and manage Compute Engine instances with gcloud compute. Simplify cloud resource management and virtual machine deployment. Free online tool, no registration required.

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}}