Provision a Google Axion C4A Arm VM

You’ll create a Google Axion C4A Arm-based virtual machine (VM) on Google Cloud Platform (GCP) using the c4a-standard-4 machine type (4 vCPUs, 16 GB memory). This VM will host your Django application.

Note

For help with GCP setup, see the Learning Path Getting started with Google Cloud Platform .

Provision a Google Axion C4A Arm VM in Google Cloud Console

To create a virtual machine based on the C4A instance type:

  • Navigate to the Google Cloud Console .
  • Go to Compute Engine > VM Instances and select Create Instance.
  • Under Machine configuration:
    • Populate fields such as Instance name, Region, and Zone.
    • Set Series to C4A.
    • Select c4a-standard-4 for machine type.

Image Alt Text:Screenshot of the Google Cloud Console showing the Machine configuration section. The Series dropdown is set to C4A and the machine type c4a-standard-4 is selected. alt-textConfiguring machine type to C4A in Google Cloud Console

  • Under OS and Storage, select Change, then choose an Arm64-based OS image. For this Learning Path, use SUSE Linux Enterprise Server.
  • If using use SUSE Linux Enterprise Server. Select “Pay As You Go” for the license type.
  • Once appropriately selected, please Click Select.
  • Under Networking, enable Allow HTTP traffic.
  • Also under Networking, in the “Network tags” text field add “allow-tcp-8000” as an additional tag

Image Alt Text:Screenshot showing the Networking configuration section. The Allow HTTP traffic checkbox is enabled and the Network tags field contains django-server. alt-textConfiguring networking and tags

Create the instance

Click Create to launch your VM instance. Google Cloud provisions the instance, which typically takes one to two minutes. Once the instance is running, you’ll see it listed in the VM instances table with a green checkmark. Note the External IP address displayed in the list—you’ll need this to access your Django application later.

Connect using SSH

Click the SSH button next to your running instance to open a browser-based terminal session.

Image Alt Text:Screenshot of the VM instances list showing the SSH button next to a running instance. The external IP address is visible in the same row. alt-textLaunching an SSH session from the VM instances list

A browser window opens with a terminal shell connected to your VM. You’re now ready to install Django.

Image Alt Text:Screenshot of a terminal shell in the browser, connected to the running VM instance. The shell displays a command prompt ready for input. alt-textTerminal shell connected to your VM

Summary and what’s next

You have successfully provisioned an Arm-based VM on Google Cloud. Next, you’ll install Django and configure your web application!

Back
Next