DevOps & Infra/K8S(Kubernetes)
[EKS] eksctl로 Cluster 생성하기
나른한댕댕이🐶
2022. 10. 23. 11:27
728x90
반응형
# eksctl
EKS의 클러스터를 관리하는 CLI 툴이다.
eksctl
eksctl - The official CLI for Amazon EKS sponsored by and built by on New for 2022 eksctl now supports creating clusters and nodegroups on AWS Outposts. eksctl is a simple CLI tool for creating and managing clusters on EKS - Amazon's managed Kubernetes ser
eksctl.io
# eksctl 설치
$ choco install -y eksctl
# eksctl 사용하여 Cluster 생성하기
$ eksctl create cluster \
--name ${cluster-name} \
--version 1.23 \
--without-nodegroup
※ eksctl을 사용하여 Cluster를 만드는 경우 kubeconfig 업데이트를 하지 않아도 자동으로 업데이트해준다.
728x90
반응형