Skip to content

Commit 1b97a00

Browse files
committed
Added readme for eks
1 parent 4b40a0c commit 1b97a00

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

tutorials/08-aws-eks/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
sudo apt install unzip
3+
4+
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
5+
unzip awscliv2.zip
6+
sudo ./aws/install
7+
8+
https://eksctl.io/installation/
9+
10+
```
11+
# for ARM systems, set ARCH to: `arm64`, `armv6` or `armv7`
12+
ARCH=amd64
13+
PLATFORM=$(uname -s)_$ARCH
14+
15+
curl -sLO "https://github.com/eksctl-io/eksctl/releases/latest/download/eksctl_$PLATFORM.tar.gz"
16+
17+
# (Optional) Verify checksum
18+
curl -sL "https://github.com/eksctl-io/eksctl/releases/latest/download/eksctl_checksums.txt" | grep $PLATFORM | sha256sum --check
19+
20+
tar -xzf eksctl_$PLATFORM.tar.gz -C /tmp && rm eksctl_$PLATFORM.tar.gz
21+
22+
sudo install -m 0755 /tmp/eksctl /usr/local/bin && rm /tmp/eksctl
23+
24+
```

0 commit comments

Comments
 (0)