Installing Tools
Installing tools by using Command Line Interface (CLI)
Now copy the URL and SSH into the instance

The sudo apt update command is used on Debian-based Linux distributions like Ubuntu to update the package lists for repositories configured in the system.
Installing AWS CLI
Installing KUBECTL
Installing EKSCTL
##For all these commands First make one directory using any name >> go to the directory>> execute these commands.
## By using the command "aws configure" log into the instance

Create EKS CLUSTER
The command you provided is used to associate an IAM OIDC identity provider for an Amazon EKS cluster. It allows the Kubernetes API server to authenticate service accounts using IAM roles.
This command creates a managed node group named "node2" within the Amazon EKS cluster "EKS-1" in the Asia Pacific (Mumbai) region. It consists of 3 nodes with a minimum of 2 and a maximum of 4, using t3.medium instances with 20GB disk volumes. SSH access is enabled with the "DevOps" public key. The group has permissions for Auto Scaling, ExternalDNS, Amazon ECR, AWS App Mesh, and AWS ALB Ingress Controller.
Last updated