Compute Engine
Run virtual machines in Google's data centres
To check for the defaults
gcloud compute project-info describe --project <your_project_ID>To set defaults
gcloud config set compute/zone ...gcloud config set compute/region ...To create your VM through command-line, run the following command:
gcloud compute instances create gcelab2 \
--machine-type n1-standard-2 \
--zone $ZONETo SSH through command line
To list your instances
Last updated