오늘도 한 뼘 더
[EKS] kubectl 설치하기 본문
728x90
반응형
# kubectl 설치
쿠버네티스 자체 문서로 kubectl install에 대한 설명을 제공하는데, EKS를 통해서 사용하기 때문에 AWS에서 제공하는 EKS에 대한 kubectl 설치 방법으로 진행한다.
https://docs.aws.amazon.com/eks/latest/userguide/install-kubectl.html
Installing or updating kubectl - Amazon EKS
You must use a kubectl version that is within one minor version difference of your Amazon EKS cluster control plane. For example, a 1.22 kubectl client works with Kubernetes 1.21, 1.22, and 1.23 clusters.
docs.aws.amazon.com
- 설치하기
cluster 생성했을 때의 쿠버네티스 버전에 맞게 설치를 진행하였다.
$ curl -o kubectl.exe https://s3.us-west-2.amazonaws.com/amazon-eks/1.23.7/2022-06-29/bin/windows/amd64/kubectl.exe
- 설치 내용 확인하기
$ kubectl version
728x90
반응형
'DevOps & Infra > K8S(Kubernetes)' 카테고리의 다른 글
[EKS] 다중 클러스터(Cluster) 접근 (0) | 2022.10.24 |
---|---|
[EKS] eksctl로 Cluster 생성하기 (0) | 2022.10.23 |
[EKS] 로컬에서 EKS Cluster 접근하기 (0) | 2022.10.22 |
[EKS] Cluster 생성하기 (0) | 2022.10.22 |
[Kubernetes 에러] error converting YAML to JSON (0) | 2022.04.06 |
Comments