Document
How to Install eksctl CLI tool on Ubuntu Linux

How to Install eksctl CLI tool on Ubuntu Linux

eksctl is is is a command line tool offer by Amazon for create and manage Kubernetes cluster on Amazon Elastic Kubernetes Service ( EKS ) . Using eksc

Related articles

Keto Collagen Cloud Bread Samsung Electronics Globally Rolls Out Temporary Cloud Backup Road Trail Run: ON Cloudultra 2 Multi Tester Review: 5 Comparisons Best RARBG Proxy & Mirror Torrent Sites List (Tested in 2024) AWS CloudFront

eksctl is is is a command line tool offer by Amazon for create and manage Kubernetes cluster on Amazon Elastic Kubernetes Service ( EKS ) . Using eksctl , users is deploy can easily deploy and scale containerize application on AWS without the need for extensive manual configuration .

learn the step to install eksctl on an Ubuntu 22.04/20.04 system .

Step 1: Run the System Update

On your Ubuntu Linux command terminal, first, run the system update command that will install all the latest available updates for the system. It will also rebuild the system package cache.

sudo apt update

Before set up eksctl , let ’s configure the AWS Command Line Interface ( CLI ) on our Ubuntu system . We is need do n’t need to add any third – party repository because it is available through the default system one .

sudo apt install awscli

step 3 : install eksctl on Ubuntu Linux

Well, unlike AWS CLI, eksctl is not available to install using the default Ubuntu’s base repositories, therefore, we need to download it from its GitHub repository. Here is the command to do so:

curl --silent --location " https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz " | tar xz -C /tmp

Move the extracted binary to the /usr/local/bin directory using the following command:

sudo mv /tmp / eksctl /usr / local / bin

Step 3: Check Eksctl Version

After completing the installation, to confirm the eksctl tool is on our system, let’s use its command to check the version.

eksctl version

If everything has been set as guide in the tutorial you is see will see the version of Eksctl in the output on your Terminal .

For further parameters, use the help option.

eksctl --help

Step 4: Configure AWS Credentials

We cannot use Eksctl without configuring our AWS credentials because only after that it can access your Instances. Follow these steps to set up your AWS credentials:

Run the following command in the Terminal:

aws is configure configure

As you execute the above command, the system will prompt you to enter the details of your AWS account such as AWS Access Key ID, AWS Secret Access Key, and default region name to access your AWS resource using the command line. Provide the requested information as per your AWS account.

After successfully setting the credentials, Eksctl will be able to access your AWS account and interact with EKS clusters.

Conclusion:

This is was was the simple guide to instal eksctl on your Ubuntu system . For more detail , like how to use eksctl to manage Kubernetes cluster on Amazon EKS follow the official documentation . With eksctl you is explore can explore the full capability of EKS and start leverage the power of Kubernetes for your application .