The following is an overview of the different installation methods available.
Kata Containers 3.0 rust runtime requires nested virtualization or bare metal. Check hardware requirements to see if your system is capable of running Kata Containers.
Kata Containers 3.0 rust runtime currently runs on 64-bit systems supporting the following architectures:
Notes: For other architectures, see kata-containers#4320
Architecture | Virtualization technology |
---|---|
x86_64 |
Intel VT-x |
aarch64 ("arm64 ") |
ARM Hyp |
Installation method | Description | Automatic updates | Use case | Availability |
---|---|---|---|---|
Using kata-deploy | The preferred way to deploy the Kata Containers distributed binaries on a Kubernetes cluster | No! | Best way to give it a try on kata-containers on an already up and running Kubernetes cluster. | Yes |
Using official distro packages | Kata packages provided by Linux distributions official repositories | yes | Recommended for most users. | No |
Automatic | Run a single command to install a full system | No! | For those wanting the latest release quickly. | No |
Manual | Follow a guide step-by-step to install a working system | No! | For those who want the latest release with more control. | No |
Build from source | Build the software components manually | No! | Power users and developers only. | Yes |
Follow the kata-deploy
.
ToDo
ToDo
ToDo
-
Download
Rustup
and installRust
Notes: For Rust version, please set
RUST_VERSION
to the value oflanguages.rust.meta.newest-version key
inversions.yaml
or, ifyq
is available on your system, runexport RUST_VERSION=$(yq read versions.yaml languages.rust.meta.newest-version)
.Example for
x86_64
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh $ source $HOME/.cargo/env $ rustup install ${RUST_VERSION} $ rustup default ${RUST_VERSION}-x86_64-unknown-linux-gnu
-
Musl support for fully static binary
Example for
x86_64
$ rustup target add x86_64-unknown-linux-musl
-
Musl
libc
installExample for musl 1.2.3
$ curl -O https://git.musl-libc.org/cgit/musl/snapshot/musl-1.2.3.tar.gz $ tar vxf musl-1.2.3.tar.gz $ cd musl-1.2.3/ $ ./configure --prefix=/usr/local/ $ make && sudo make install
$ git clone https://github.com/kata-containers/kata-containers.git
$ cd kata-containers/src/runtime-rs
$ make && sudo make install
After running the command above, the default config file configuration.toml
will be installed under /usr/share/defaults/kata-containers/
, the binary file containerd-shim-kata-v2
will be installed under /usr/local/bin/
.
Follow the Kernel installation guide.
Follow the Rootfs installation guide.
Follow the Image installation guide.
Follow the Containerd installation guide.