Xác nhận các nodes:
kubectl get nodes # nếu bạn thấy 3 nodes, thì bạn đang làm đúng
aws eks update-kubeconfig --name eksworkshop-eksctl --region ${AWS_REGION}
STACK_NAME=$(eksctl get nodegroup --cluster eksworkshop-eksctl -o json | jq -r '.[].StackName')
ROLE_NAME=$(aws cloudformation describe-stack-resources --stack-name $STACK_NAME | jq -r '.StackResources[] | select(.ResourceType=="AWS::IAM::Role") | .PhysicalResourceId')
echo "export ROLE_NAME=${ROLE_NAME}" | tee -a ~/.bash_profile
Bạn đã có một Amazon EKS Cluster hoàn chỉnh và sẵn sàng để sử dụng! Trước khi bạn tiến hành bất kỳ thử nghiệm nào khác, hãy chắc chắn hoàn thành các bước trên trang tiếp theo để cập nhật thông tin xác thực trong Console EKS.