File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 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+ ```
You can’t perform that action at this time.
0 commit comments