diff --git a/source/clear-linux/tutorials/kata.rst b/source/clear-linux/tutorials/kata.rst index 615f9e1e..a21a8542 100644 --- a/source/clear-linux/tutorials/kata.rst +++ b/source/clear-linux/tutorials/kata.rst @@ -4,10 +4,9 @@ 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 23380. +|CLOSIA|. Kata Containers is an open source project dedicated to the +development of a lightweight implementation of Virtual Machines (VMs) +offering the speed of containers and the security of VMs. Prerequisites ************* @@ -22,17 +21,17 @@ Before you install any new packages, update |CL| with the following command: sudo swupd update -Install Kata Containers\* +Install Kata Containers *********************** -Kata Containers\* is included in the :file:`containers-virt` bundle. To install the +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 +Configure Docker\* to use Kata Containers by default .. code-block:: bash @@ -43,35 +42,55 @@ Configure Docker to use Kata Containers\* by default ExecStart=/usr/bin/dockerd -D --add-runtime kata-runtime=/usr/bin/kata-runtime --default-runtime=kata-runtime EOF -Restart the Docker\* and Kata Containers\* systemd services +Restart the Docker and Kata Containers systemd services .. code-block:: bash sudo systemctl daemon-reload sudo systemctl restart docker -Run Kata Containers\* +Run Kata Containers ******************* .. code-block:: bash sudo docker run -ti busybox sh +.. note:: + + In cases where it is necessary to use a proxy server and your proxy + environment variables are already set, run the following commands as + a shell script to configure Docker: + + .. code-block:: bash + + docker_service_dir="/etc/systemd/system/docker.service.d/" + sudo mkdir -p "$docker_service_dir" + cat <