Install eksctl¶
eksctl is a simple command line tool for creating and managing Kubernetes clusters on Amazon EKS.
eksctl provides the fastest and easiest way to create a new cluster with nodes for Amazon EKS.
Let's see how you can install eksctl on your operating system.
Warning
Given the ever-changing nature of the installation process, it is advisable to rely on the official documentation when installing eksctl.
You can visit the official documentation and follow the instructions to install eksctl on your operating system.
Step 1: Install eksctl¶
Install eksctl on MacOS¶
You can install or upgrade eksctl on MacOS using the following command:
brew upgrade eksctl && { brew link --overwrite eksctl; } || { brew tap weaveworks/tap; brew install weaveworks/tap/eksctl; }
Install eksctl on Windows¶
You can use Chocolatey to install eksctl on Windows. If you do not already have Chocolatey installed on your Windows system, see Installing Chocolatey.
Install eksctl:
If you already have eksctl installed, you can upgrade it using the followign command:
Install eksctl on Unix¶
-
Download and extract the latest release of
eksctlwith the following command: -
Move the extracted binary to
/usr/local/bin:
Step 2: Verify eksctl Installation¶
The above command should print the version of the eksctl installed on your system.