eksctl is a command-line tool that simplifies the creation and management of Kubernetes clusters on Amazon EKS.
-
Update the package index:
sudo apt update sudo apt upgrade -y
-
Download eksctl binary:
curl -sL "https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz" -o eksctl.tar.gz -
Extract the binary:
tar -xzf eksctl.tar.gz
-
Move the binary to a directory in your PATH:
sudo mv eksctl /usr/local/bin
-
Verify the installation:
eksctl version