From c021c2ead2970ba474eba9f68a7bc230e3c29b93 Mon Sep 17 00:00:00 2001 From: Jose Lamego Date: Fri, 8 Jun 2018 13:47:25 -0500 Subject: [PATCH] kata-containers: add tutorial This tutorial describes how to install, configure and run Kata Containers on Clear Linux. Signed-off-by: Jose Lamego --- source/clear-linux/tutorials/kata.rst | 81 ++++++++++++++++++++++ source/clear-linux/tutorials/tutorials.rst | 1 + 2 files changed, 82 insertions(+) create mode 100644 source/clear-linux/tutorials/kata.rst diff --git a/source/clear-linux/tutorials/kata.rst b/source/clear-linux/tutorials/kata.rst new file mode 100644 index 00000000..7f886e58 --- /dev/null +++ b/source/clear-linux/tutorials/kata.rst @@ -0,0 +1,81 @@ + .. _kata: + +Install Kata Containers +####################### + +This tutorial describes how to install, configure and run Kata Containers on +|CLOSIA|. Kata Containers is an open source project and community working to +build a standard implementation of lightweight Virtual Machines (VMs) that feel +and perform like containers, but provide the workload isolation and security +advantages of VMs. Kata Containers is available in Clear Linux versions above 22860. + +Prerequisites +************* + +This tutorial assumes you have installed |CL| on your host system. +For detailed instructions on installing |CL| on a bare metal system, visit +the :ref:`bare metal installation tutorial`. + +Before you install any new packages, update |CL| with the following command: + +.. code-block:: bash + + sudo swupd update + +Install Kata Containers +*********************** + +Kata Containers is included in the :file:`containers-virt` bundle. To install the +framework, enter: + +.. code-block:: bash + + sudo swupd bundle-add containers-virt + +Configure Docker to use Kata Containers by default + +.. code-block:: bash + + sudo mkdir -p /etc/systemd/system/docker.service.d/ + cat <