Go to file
James O. D. Hunt c0d3ef8c1b CI: Add rfc logic to pullapprove config
For parity with the agent, disallow merging of RFC branches.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
2017-12-18 21:53:23 +00:00
image-builder image: Add README 2017-12-06 13:32:03 -06:00
rootfs-builder rootfs: Add docker support 2017-12-06 13:32:01 -06:00
.pullapprove.yml CI: Add rfc logic to pullapprove config 2017-12-18 21:53:23 +00:00
CODE_OF_CONDUCT.md CoC: Add Code of Conduct 2017-12-04 23:35:38 +01:00
LICENSE Initial commit 2017-11-13 12:24:56 +01:00
Makefile Makefile: Add image target 2017-12-06 13:32:03 -06:00
README.md docs: Add README 2017-12-06 13:32:03 -06:00

Overview

Kata Containers runtime creates a Virtual Machine to isolate a set of container workloads. The Virtual Machine requires a operating system operating (Guest OS) to boot and create containers inside the guest environment.

This repository contains tools to create a Guest OS for Kata Containers.

Terms

This section describe the terms used as along all this document.

  • Guest OS

It is the collection of a virtual disk or disk image and kernel that in conjunction work as an operating system and it is different than the host operating system.

  • Virtual disk or Guest Image

It is a virtual disk witch contains a rootfs that will be used to boot a Virtual Machine by for the Kata Containers runtime.

  • rootfs

The root filesystem or rootfs is the filesystem that is contained in the guest root directory. It can be built from any Linux Distribution but must provide at least the following components: - Kata agent - A init system (for example systemd) witch allow to start Kata agent at boot time.