Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1.34 KB

File metadata and controls

38 lines (27 loc) · 1.34 KB

GSP001 —— Creating a Virtual Machine

Table of Contents (🔎 Click to expand/collapse)

Overview

Compute Engine lets you create virtual machines that run different operating systems, including multiple flavors of Linux (Debian, Ubuntu, Suse, Red Hat, CoreOS) and Windows Server, on Google infrastructure. You can run thousands of virtual CPUs on a system that is designed to be fast and to offer strong consistency of performance.

Create Instance (Graphical User Interface)

  1. Click Navigation Menu > Compute Engine > VM Instances.
  2. Click CREATE INSTANCE.
  3. Configure the instance parameters.
  4. Click CREATE

Create Instance (Command Line Interface)

$ gcloud compute instances create <NAME> \
    --zone=<ZONE> \
    --machine-type=<MACHINE_TYPE> \

References