diff --git a/docs/install/README.md b/docs/install/README.md index a206bffa89..1f7d86fce4 100644 --- a/docs/install/README.md +++ b/docs/install/README.md @@ -42,18 +42,18 @@ Kata is packaged by the Kata community for: |Distribution (link to installation guide) | Versions | |-----------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------| |[Debian](debian-installation-guide.md) | 9, 10 | -|[SUSE Linux Enterprise Server (SLES)](sles-installation-guide.md)| SLES 12 SP3 | |[Ubuntu](ubuntu-installation-guide.md) | 16.04, 18.04 | #### Official packages Kata packages are provided by official distribution repositories for: -|Distribution (link to packages) | Versions | -|-------------------------------------------|--------------------------------------------------------------------------------| -|[CentOS](centos-installation-guide.md) | 8 | -|[Fedora](fedora-installation-guide.md) | 32, Rawhide | -|[openSUSE](opensuse-installation-guide.md) | [Leap 15.1](opensuse-leap-15.1-installation-guide.md)
Leap 15.2, Tumbleweed | +|Distribution (link to packages) | Versions | +|---------------------------------------------------------|--------------------------------------------------------------------------------| +|[CentOS](centos-installation-guide.md) | 8 | +|[Fedora](fedora-installation-guide.md) | 32, Rawhide | +|[SUSE Linux Enterprise (SLE)](sle-installation-guide.md) | SLE 15 SP1, 15 SP2 | +|[openSUSE](opensuse-installation-guide.md) | [Leap 15.1](opensuse-leap-15.1-installation-guide.md)
Leap 15.2, Tumbleweed | ### Automatic Installation diff --git a/docs/install/sle-installation-guide.md b/docs/install/sle-installation-guide.md new file mode 100644 index 0000000000..7e22396b33 --- /dev/null +++ b/docs/install/sle-installation-guide.md @@ -0,0 +1,15 @@ +# Install Kata Containers on SLE + +1. Install the Kata Containers components with the following commands: + + ```bash + $ source /etc/os-release + $ DISTRO_VERSION=$(sed "s/-/_/g" <<< "$VERSION") + $ sudo -E zypper addrepo --refresh "https://download.opensuse.org/repositories/devel:/kubic/SLE_${DISTRO_VERSION}_Backports/devel:kubic.repo" + $ sudo -E zypper -n --gpg-auto-import-keys install katacontainers + ``` + +2. Decide which container manager to use and select the corresponding link that follows: + + - [Docker](docker/sles-docker-install.md) + - [Kubernetes](../Developer-Guide.md#run-kata-containers-with-kubernetes) diff --git a/docs/install/sles-installation-guide.md b/docs/install/sles-installation-guide.md deleted file mode 100644 index b602ce05ca..0000000000 --- a/docs/install/sles-installation-guide.md +++ /dev/null @@ -1,15 +0,0 @@ -# Install Kata Containers on SLES - -1. Install the Kata Containers components with the following commands: - - ```bash - $ ARCH=$(arch) - $ BRANCH="${BRANCH:-master}" - $ sudo -E zypper addrepo "http://download.opensuse.org/repositories/home:/katacontainers:/releases:/${ARCH}:/${BRANCH}/SLE_15_SP1/home:katacontainers:releases:${ARCH}:${BRANCH}.repo" - $ sudo -E zypper -n --no-gpg-checks install kata-runtime kata-proxy kata-shim - ``` - -2. Decide which container manager to use and select the corresponding link that follows: - - - [Docker](docker/sles-docker-install.md) - - [Kubernetes](../Developer-Guide.md#run-kata-containers-with-kubernetes)