/common-templates

Templates for running VMs on KubeVirt

Primary LanguageShellApache License 2.0Apache-2.0

Build Status

A set of (meta-)Templates to create KubeVirt VMs.

Overview

This repository provides VM templates in the form compatible with OpenShift templates and kubevirt UI and those can further be transformed into regular objects for use with plain Kubernetes.

The VM templates are generated from meta-templates via Ansible and libosinfo. The generated templates are parametrized according to three aspects: the guest OS, the workload type and the size. The generated content is stored in dist/.

The Ansible playbook generate-templates.yaml describes all combinations that should be generated.

Every template consists of a VirtualMachine definition which can be used to launch the guest, if a disk image is available (see below).

Requirements

Is it necessary to install the following components to be able to run the Ansible generator and the CI suite:

  • jq
  • ansible >= 2.4
  • libosinfo
  • python-gobject
  • osinfo-db-tools
  • intltool

Usage

By default the process below takes a generated template and converts it to an VM object that can be used to start a virtual machine. The conversion fails if a parameter (like the PVC name) is required, but not provided (i.e.PVCNAME).

# Clone the repository
$ git clone https://github.com/kubevirt/common-templates
$ cd common-templates

# Pull all submodules
$ git submodule init
$ git submodule update

# Build osinfo database
$ make -C osinfo-db

# Generate the template matrix
$ ansible-playbook generate-templates.yaml

# Pick a template by selecting
# - the guest OS - windows
# - the workload type - desktop
# - the size - medium

# Use the template
$ oc process --local -f dist/templates/windows-desktop-medium.yaml
The Template "windows-desktop-medium" is invalid: template.parameters[1]: Required value:
template.parameters[1]: parameter PVCNAME is required and must be specified

$ oc process --local -f dist/templates/windows-desktop-medium.yaml  --parameters
NAME      DESCRIPTION                           GENERATOR   VALUE
NAME      Name of the new VM                    expression  windows-[a-z0-9]{6}
PVCNAME   Name of the PVC with the disk image

$ oc process --local -f dist/templates/windows-desktop-medium.yaml PVCNAME=mydisk
…

$ oc process --local -f dist/templates/windows-desktop-medium.yaml PVCNAME=mydisk | kubectl apply -f -
virtualmachine.kubevirt.io/windows-rt1ap2 created

$

Templates

The table below lists the guest operating systems that are covered by the templates. The meta-templates are not directly consumable, please use the generator to prepare the properly parametrized templates first.

Note: The templates are tuned for a specific guest version, but is often usable with different versions as well, i.e. the Fedora 28 template is also usable with Fedora 27 or 26.

Guest OS Meta-template
Microsoft Windows Server 2012 R2 (no CI) windows
Fedora 28 fedora
Red Hat Enterprise Linux 7.5 rhel7
Ubuntu 18.04 LTS ubuntu
OpenSUSE Leap 15.0 (no CI) opensuse
Cent OS 7 centos7

License

common-templates are distributed under the Apache License, Version 2.0.