Deploying App through AWS EKS by using ingress and fargate
1.Create cluster Command- eksctl create cluster --name demo-cluster --region us-east-1 --fargate (15 to 20 min) 2. Once cluster is ready check if it is visible in EKS 3. aws eks update-kubeconfig --name demo-cluster --region us-east-1 output- Added new context arn:aws:eks:us-east-1:533267033126:cluster/demo-cluster to C:\Users\Raghvendra Singh\.kube\config 4. creating fargate profile Command (linux)- eksctl create fargateprofile \ --cluster demo-cluster \ --region us-east-1 \ --name alb-sample-app \ --namespace game-2048 windows- eksctl create fargateprofile --cluster demo-cluster --region us-east-1 --name alb-sample-app --namespace game-2048 5. Application deployment- kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.5.4/docs/examples/2048/2048_full.yaml 6. After deploying this app, run few c...