Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #83 from jcvenegas/fix-ubuntu-docs
Browse files Browse the repository at this point in the history
install: Fix kata installation steps.
  • Loading branch information
Eric Ernst committed May 19, 2018
2 parents 1ca427d + f39dc40 commit a019574
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion install/fedora-installation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ For more information on installing Docker please refer to the

2. Install the Kata Containers components with the following commands:

**Note:** The repository redirects the download content to use `http`, be aware that this installation channel is not secure.
```bash
$ source /etc/os-release
$ sudo -E VERSION_ID=$VERSION_ID dnf config-manager --add-repo \
https://download.opensuse.org/repositories/home:/katacontainers:/release/Fedora\_$VERSION_ID/home:katacontainers:release.repo
http://download.opensuse.org/repositories/home:/katacontainers:/release/Fedora\_$VERSION_ID/home:katacontainers:release.repo
$ sudo -E dnf -y install kata-runtime kata-proxy kata-shim
```

Expand Down
5 changes: 3 additions & 2 deletions install/ubuntu-installation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ For more information on installing Docker please refer to the

2. Install the Kata Containers components with the following commands:

**Note:** The repository is downloading content using `http`, be aware that this installation channel is not secure.
```bash
$ sudo sh -c "echo 'deb https://download.opensuse.org/repositories/home:/katacontainers:/release/xUbuntu_$(lsb_release -rs)/ /' >> /etc/apt/sources.list.d/kata-containers.list"
$ curl -sL https://download.opensuse.org/repositories/home:/katacontainers:/release/xUbuntu_$(lsb_release -rs)/Release.key | sudo apt-key add -
$ sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/katacontainers:/release/xUbuntu_$(lsb_release -rs)/ /' >> /etc/apt/sources.list.d/kata-containers.list"
$ curl -sL http://download.opensuse.org/repositories/home:/katacontainers:/release/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
```
Expand Down

0 comments on commit a019574

Please sign in to comment.