From 6710d87c6a6ad38500ece0472594634541d17f8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 26 Aug 2020 16:53:37 +0200 Subject: [PATCH] install: Update RHEL information MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Although the community packages are present for RHEL, everything about them is extremely unsupported on the Red Hat side. Knowing this, we'd be better to simply not mentioned those and, if users really want to try kata-containers on RHEL, they can simply follow the CentOS installation guide. In the future, if the Fedora packages make their way to RHEL, we can add the information here. However, if we're recommending something unsupported we'd be better recommending kata-deploy instead. Fixes: #623 Signed-off-by: Fabiano FidĂȘncio --- docs/install/README.md | 1 - docs/install/rhel-installation-guide.md | 16 ---------------- 2 files changed, 17 deletions(-) delete mode 100644 docs/install/rhel-installation-guide.md diff --git a/docs/install/README.md b/docs/install/README.md index a353296907..54373accbd 100644 --- a/docs/install/README.md +++ b/docs/install/README.md @@ -43,7 +43,6 @@ Kata is packaged by the Kata community for: |-----------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------| |[Debian](debian-installation-guide.md) | 9, 10 | |[openSUSE](opensuse-installation-guide.md) | [Leap](opensuse-leap-installation-guide.md) (15, 15.1)
[Tumbleweed](opensuse-tumbleweed-installation-guide.md) | -|[Red Hat Enterprise Linux (RHEL)](rhel-installation-guide.md) | 7 | |[SUSE Linux Enterprise Server (SLES)](sles-installation-guide.md)| SLES 12 SP3 | |[Ubuntu](ubuntu-installation-guide.md) | 16.04, 18.04 | diff --git a/docs/install/rhel-installation-guide.md b/docs/install/rhel-installation-guide.md deleted file mode 100644 index 37412a7f11..0000000000 --- a/docs/install/rhel-installation-guide.md +++ /dev/null @@ -1,16 +0,0 @@ -# Install Kata Containers on RHEL - -1. Install the Kata Containers components with the following commands: - - ```bash - $ source /etc/os-release - $ ARCH=$(arch) - $ BRANCH="${BRANCH:-master}" - $ sudo -E yum-config-manager --add-repo "http://download.opensuse.org/repositories/home:/katacontainers:/releases:/${ARCH}:/${BRANCH}/RHEL_${VERSION_ID}/home:katacontainers:releases:${ARCH}:${BRANCH}.repo" - $ sudo -E yum -y install kata-runtime kata-proxy kata-shim - ``` - -2. Decide which container manager to use and select the corresponding link that follows: - - - [Docker](docker/rhel-docker-install.md) - - [Kubernetes](../Developer-Guide.md#run-kata-containers-with-kubernetes)