From 808d85b46793dc45a28b78ec5f3482e58b50da72 Mon Sep 17 00:00:00 2001 From: Eric Ernst Date: Thu, 27 Dec 2018 09:22:16 -0800 Subject: [PATCH] install: use stable instead of master for docs 1.5.0-rc2 packages for linux-container fail for Ubuntu. Let's use 1.4-stable instead of master for now. Fixes #325 Signed-off-by: Eric Ernst --- install/ubuntu-installation-guide.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/install/ubuntu-installation-guide.md b/install/ubuntu-installation-guide.md index e91e4a7c0e..0a2d8703f5 100644 --- a/install/ubuntu-installation-guide.md +++ b/install/ubuntu-installation-guide.md @@ -1,11 +1,10 @@ # Install Kata Containers on Ubuntu 1. Install the Kata Containers components with the following commands: - ```bash $ ARCH=$(arch) - $ sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/katacontainers:/releases:/${ARCH}:/master/xUbuntu_$(lsb_release -rs)/ /' > /etc/apt/sources.list.d/kata-containers.list" - $ curl -sL http://download.opensuse.org/repositories/home:/katacontainers:/releases:/${ARCH}:/master/xUbuntu_$(lsb_release -rs)/Release.key | sudo apt-key add - + $ sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/katacontainers:/releases:/${ARCH}:/stable-1.4/xUbuntu_$(lsb_release -rs)/ /' > /etc/apt/sources.list.d/kata-containers.list" + $ curl -sL http://download.opensuse.org/repositories/home:/katacontainers:/releases:/${ARCH}:/stable-1.4/xUbuntu_$(lsb_release -rs)/Release.key | sudo apt-key add - $ sudo -E apt-get update $ sudo -E apt-get -y install kata-runtime kata-proxy kata-shim ```