Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Update installation instructions for Amazon Linux #671

Merged
merged 1 commit into from
Aug 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ KVM acceleration can be used

With this kind of output, you're ready to go!

Alternatively if you want to run this on AWS EC2, use Amazon Linux v2 (https://aws.amazon.com/amazon-linux-2/) and ensure you use a baremetal instance, like the r series like say r5.metal (https://aws.amazon.com/ec2/instance-types/).

## Installing dependencies

Ignite has a few dependencies (read more in this [doc](dependencies.md)).
Expand All @@ -64,6 +66,14 @@ which containerd || ( yum-config-manager --add-repo https://download.docker.com/
# Install containerd if it's not present
```

Amazon Linux 2

```bash
yum install -y e2fsprogs openssh-clients git
which containerd || amazon-linux-extras enable docker && yum install -y containerd
# Install containerd if it's not present
```

### CNI Plugins

Install the CNI binaries like this:
Expand Down