Kubernetes
February 24, 2025

Simplified AWS EKS Cluster Create by Using “eksctl” Command Line Tool

Create AWS EKS cluster using “eksctl” command line by creating YAML configuration file on the default VPC

Blog detail image

Creating Kubenetes cluster in AWS have multiple options like using AWS SDK, Terraform, Cloudformation and easy and quick for new learner using AWS Console. In this blog we going see another well know method of creating AWS EKS cluster using “eksctl” command by using as YAML configuration in default VPC. ( Same can be create by CLI command).

Let’s get start

Prerequisites:

Let install these binary one by one

  1. AWS CLI
  2. eksctl CLI
  3. kubectl

Install AWS CLI (Mac OS)

Download AWS CLI binary

curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"

Install AWS CLI

sudo installer -pkg ./AWSCLIV2.pkg -target /

Verify the installation

aws --version

Configure AWS CLI

Login to AWS console as root user

Create IAM user

username: kubedeveloper

No AWS console access, Only programmatic access

Provide Username

Permission as per User Type

Review and Create

Create Access and Secret Access Key

Select the IAM user “kubedeveloper”

Navigate to Security Credentials

Click Create access key

Select Use case : Command Line Interface (CLI) & check the Confirmation

Set description tag — optional and Click create

Now we got AccessKey and SecretAccessKey

Next, Let configure AWS CLI on Mac OS command line

Note: if multiple aws account configured, use -- profile

$ aws configure

Validate AWS CLI Access

Run any aws command to list resources

Here eg: To list s3 buckets on my AWS account

bala@kubelancer Downloads % aws s3 ls


Getting output, which denoted AWS access has been configured correctly

bala@kubelancer Downloads % aws s3 ls
2022-12-13 21:36:02 firehose-backup-05bf6840
bala@kubelancer Downloads %

Install eksctl on Mac OS

To download the latest release, run on Mac OS (arm64 architecture):

curl -sLO "https://github.com/eksctl-io/eksctl/releases/latest/download/eksctl_Darwin_arm64.tar.gz"
tar -xzvf eksctl_Darwin_arm64.tar.gz
sudo mv ./eksctl /usr/local/bin

Ref: https://www.weave.works/oss/eksctl/

Creating an AWS EKS Kubernetes Cluster using eksctl tool

Create Cluster configuration yaml file

$ vi cluster-config.yamlapiVersion: eksctl.io/v1alpha5
kind: ClusterConfig

metadata:
 name: kubelancer-cluster-1
 region: us-east-1

nodeGroups:
 - name: ng-1
   instanceType: t4g.medium
   desiredCapacity: 2
   volumeSize: 20
   ssh:
     allow: false

Create Cluster by running below command

$ eksctl create cluster -f cluster-config.yaml

Cluster created successfully

Note: if multiple aws account configured, use — profile

List the Cluster by using eksctl command

eksctl interact with AWS API and get the required details from AWS cloud

$ eksctl get cluster --profile kubedev

Use the following command to get update kube-config

$ aws eks update-kubeconfig --name=kubelancer-cluster-1 --region=us-east-1

Verify the Cluster

kubectl get nodes

Cluster Node Status

Great! Cluster has created successfully.

Delete Cluster

$ kubectl get poddisruptionbudget -A
$ kubectl delete poddisruptionbudget coredns -n kube-system
$ eksctl delete cluster -f cluster-config.yaml --profile kubedev

Happy Cloud Computing :)


//Author
BalaSubramani K
Co-Founder & DevOps Consultant | Cloud & Kubernetes Solution Architect | AWS | GCP | AZURE | GitOps | Istio | Cloud Security | Observability | FinOps | Education

Related blog