Create a VM

How to Create a VM

Create one or more virtual machines from the Virtual Machines page.

  1. Choose the option to create either one or multiple VM instances.
  2. The VM name is required.
  3. (Optional) You can select to use the VM template. By default we have added ISO, raw, and Windows image templates.
  4. Configure the CPU and Memory of the VM.
  5. Select a custom VM image.
  6. Select SSH keys or upload a new one.
  7. To add more disks to the VM, go to the Volumes tab. The default disk will be the root disk.
  8. To configure networks, go to the Networks tab. The Management Network is added by default. It is also possible to add secondary networks to the VMs using vlan networks (configured on Advanced > Networks).
  9. (Optional) Configure advanced options like hostname and cloud-init data in the Advanced Options section.

create-vm

Cloud config examples

Config for the password of the default user:

  1. #cloud-config
  2. password: password
  3. chpasswd: { expire: False }
  4. ssh_pwauth: True

Network-data configuration using DHCP:

  1. version: 1
  2. config:
  3. - type: physical
  4. name: eth0
  5. subnets:
  6. - type: dhcp
  7. - type: physical
  8. name: eth1
  9. subnets:
  10. - type: dhcp

You can also use the Cloud Config Template feature to include a pre-defined cloud-init config for the VM.

Networks

Management Network

A management network represents the default vm eth0 interface configured by the cluster network solution that is present in each VM.

By default, a VM can be accessed via the management network.

Secondary Network

It is also possible to connect VMs using additional networks with Harvester’s built-in vlan networks.