eksctl is a command line tool for working with EKS clusters that automates many individual tasks.
The eksctl tool uses CloudFormation under the hood, creating one stack for the EKS master control plane and another stack for the worker nodes.
Download and extract the latest release of eksctl
with the following
command.
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 /usr/local/bin
.
sudo mv /tmp/eksctl /usr/local/bin
eksctl version
Hey, even after doing downloading and moving it to /usr/local/bin, eksctl commands are not working.
ReplyDelete