Cluster 가져오기
aws eks list-clusters
Shell
복사
EKS Cluster 정보 가져오기
aws eks describe-cluster --name <ClusterName>
Shell
복사
Addon 생성하기
aws eks create-addon --cluster-name <ClusterName> --addon-name eks-pod-identity-agent --region ap-northeast-2
Shell
복사
kubeconfig 등록하기
aws eks --region ap-northeast-2 update-kubeconfig --name <ClusterName> --alias <ClusterName>
Shell
복사
Cluster Version 가져오기
aws eks describe-cluster --name <ClusterName> --query 'cluster.version' --output text
Shell
복사
Cluster 로깅 타입 가져오기
aws eks describe-cluster --name <ClusterName> --query 'cluster.logging.clusterLogging[].types' | jq .
Shell
복사
KMS Key ARN 가져오기 (암호화 확인)
aws eks describe-cluster --name <ClusterName> --query "cluster.encryptionConfig[].provider.keyArn" --output text
Shell
복사
Cluster 퍼블릭/프라이빗 엔드포인트 활성화 여부 가져오기
aws eks describe-cluster --name <ClusterName> --query "cluster.resourcesVpcConfig.[endpointPublicAccess, endpointPrivateAccess]"
Shell
복사
Fargate Profile 가져오기
aws eks describe-fargate-profile --cluster-name <ClusterName> --fargate-profile-name <FargateProfileName> --query "fargateProfile.fargateProfileName"
Shell
복사

