Source: https://medium.com/@subhasmitadas696/deploying-a-simple-application-using-eks-step-by-step-db2aca1a93d7 Step 1: Setting Up Your AWS Environment 1.1 Install AWS CLI First, you need the AWS CLI installed on your machine. If you haven’t installed it yet, you can do so by following the instructions here . curl -fsSL https://awscli.amazonaws.com/v2/install.sh | bash 1.2 Configure AWS CLI After installing, configure the AWS CLI with your credentials: aws configure You’ll be prompted to enter your AWS Access Key ID, Secret Access Key, region, and output format. 1.3 Install kubectl Next, you need to install kubectl, the Kubernetes command-line tool. You can find installation instructions here . 1.4 Install eksctl Finally, install eksctl, a simple CLI tool for creating and managing EKS clusters. Instructions can be found here . Step 2: Create an EKS Cluster 2.1 Create a Cluster Use eksctl to create a new EKS cluster. This command creates a cluster named simple-cluster with tw...