본문 바로가기

⭐ Kubernetes & EKS/명령어 모음

eks 클러스터 확인

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
반응형