From 378e429db8b8f6cd6d9ff665d1a56b1f132a0fc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 27 Aug 2020 13:36:24 +0200 Subject: [PATCH] install: Update SUSE information MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Following up a conversation with Ralf Haferkamp, we can safely drop the instructions for using Kata Containers on SLES 12 SP3 in favour of using the official builds provided for SLE 15 SP1, and SLE 15 SP2. Fixes: #623 Signed-off-by: Fabiano FidĂȘncio --- docs/install/README.md | 12 ++++++------ docs/install/sle-installation-guide.md | 15 +++++++++++++++ docs/install/sles-installation-guide.md | 15 --------------- 3 files changed, 21 insertions(+), 21 deletions(-) create mode 100644 docs/install/sle-installation-guide.md delete mode 100644 docs/install/sles-installation-guide.md 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)