eksctl.sh
Installs the latest Linux eksctl release into /usr/local/bin/eksctl.
What the Script Does
The current script is a small Linux-only installer wrapper in static/eksctl.sh.
- Detects
x86_64oraarch64 - Downloads the latest
eksctltarball from GitHub Releases - Extracts it into
~/.tmp - Installs the binary to
/usr/local/bin/eksctlwithinstall
Quick Install
curl -fsSL https://awsutils.github.io/eksctl.sh | sudo sh
Prerequisites
- Linux host
wget,tar, andinstall- Permission to write to
/usr/local/bin
Verify
eksctl version
eksctl help
Notes
- The script always installs the latest release; it does not accept a version flag
- The script currently assumes
~/.tmpcan be created and reused - macOS is not handled by the current implementation
Typical Next Step
Use eksctl to create or manage an EKS cluster:
eksctl create cluster --name my-cluster --region us-east-1