728x90
반응형
# 현재 어느 클러스터에 있는지 확인하는 명령어
kubectl cluster-info
# 조회를 하면 어래와 같이 클러스터 정보가 나온다.
kim:~/environment $ kubectl cluster-info
Kubernetes control plane is running at https://111111111111111111111111.gr7.ap-northeast-2.eks.amazonaws.com
CoreDNS is running at https://1111111111111111111111111.gr7.ap-northeast-2.eks.amazonaws.com/api/v1/namespaces/kube-system/services/kube-dns:dns/proxy
To further debug and diagnose cluster problems, use 'kubectl cluster-info dump'
# 해당 정보중 Kubernetes control plane의 URL 정보는 EKS의 API 서버 엔드포인트 주소와 동일하다.
해당 정보를 비교해서 현재 어떤 클러스터에 붙어 있는지 확인 가능하다.
# 명령어를 통한 클러스터 확인하기
eksctl get nodegroup --cluster=<cluster_name> -o yaml
- 결과
kim:~/ $ eksctl get nodegroup --cluster=EKS -o yaml
- AutoScalingGroupName:
Cluster:
CreationTime: "2022-07-25T01:22:58.507Z"
DesiredCapacity: 3
ImageID: AL2_x86_64
InstanceType: t3.medium
MaxSize: 3
MinSize: 3
Name:
NodeInstanceRoleARN:
StackName: ""
Status: ACTIVE
Type: managed
Version: "1.22"
- 끝 -
728x90
반응형
'⭐ Kubernetes & EKS > 명령어 모음' 카테고리의 다른 글
pod cpu 및 메모리 사용량 확인 (0) | 2022.08.11 |
---|---|
쿠버네티스 주요명령어 모음 (0) | 2021.10.09 |
쿠버네티스 주요 명령어 설명 (0) | 2021.10.07 |