How to create AWS EKS using eksctl
How to create AWS EKS using eksctl Refer the official document below for the prerequisites https://docs.aws.amazon.com/eks/latest/userguide/getting-started-eksctl.html kubectl , aws cli are installed and configured in my ec2 instance , please refer the old blog below https://abushadtech.blogspot.com/2021/10/install-and-configure-aws-cli-and.html Install eksctl ------------------------------------------------------------------------------- $ curl --silent --location " https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz " | tar xz -C /tmp $ sudo mv /tmp/eksctl /usr/local/bin $ eksctl version To check if eksctl is able to communicate with AWS , use below command $ eksctl get clusters 2021-10-28 16:58:25 [ ℹ ] eksctl version 0.70.0 2021-10-28 16:58:25 [ ℹ ] using region us-east-1 NAME REGION...