EKS Cluster Connectionยถ
๐ฐ๏ธ EKS Cluster Authentication Overviewยถ
Purpose
This document describes how to authenticate, configure, and verify connections to Amazon EKS clusters using AWS CLI and kubectl.
๐ก๏ธ Verify AWS Credentialsยถ
Before connecting to your EKS cluster, confirm you are using the correct AWS credentials:
Credential Verification
This command returns your AWS account and user information, Ensure you have the necessary IAM permissions for EKS access.
โ๏ธ Configure kubeconfig for EKS Clustersยถ
# Dev-US Cluster
aws eks --region us-east-1 update-kubeconfig --name dev-us
# TIM-POC Cluster
aws eks --region us-east-1 update-kubeconfig --name tim-poc
# ATnT-POC Cluster
aws eks --region us-east-1 update-kubeconfig --name atandt-poc
# DEMO Cluster
aws eks --region us-east-1 update-kubeconfig --name demo
# Telcel-POC Cluster
aws eks --region us-east-1 update-kubeconfig --name telcel-poc
Region Specification
Replace us-east-1 with your cluster's AWS region if different.