Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 767 Bytes

File metadata and controls

38 lines (24 loc) · 767 Bytes

eksctl Installation**

eksctl is a command-line tool that simplifies the creation and management of Kubernetes clusters on Amazon EKS.

Steps:

  1. Update the package index:

    sudo apt update
    sudo apt upgrade -y
  2. Download eksctl binary:

    curl -sL "https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz" -o eksctl.tar.gz
  3. Extract the binary:

    tar -xzf eksctl.tar.gz
  4. Move the binary to a directory in your PATH:

    sudo mv eksctl /usr/local/bin
  5. Verify the installation:

    eksctl version