1. kubectl 설치
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
chmod +x kubectl
sudo mv kubectl /usr/local/bin/
kubectl version --client
2. eksctl 설치
*git HUB URL
하단 글 참고
https://cloudgarden.tistory.com/59
sudo mv /tmp/eksctl /usr/local/bin
eksctl version
3. eks 클러스터 생성
aws configure 되어있는 지 확인!
eksctl create cluster \
--name my-eks \
--with-oidc \
--zones ap-northeast-2a,ap-northeast-2c \
--nodegroup-name my-ng \
--nodes 2 \
--node-type t3.medium \
--node-volume-size=20 \
--managed \
--node-private-networking
이후에 생성된 VPC 확인 가능!!!
Resource map 조회
'클라우드 > AWS' 카테고리의 다른 글
[AWS 플젝 / K8S] EKS와 Kubernetes를 활용해서 컨테이너 배포하는 방법 (1) | 2024.12.06 |
---|---|
[AWS] AWS cli로 EKS 사용하여 Cluster 및 Private Network 생성하기 eksctl 설치(git HUB URL 포함) (0) | 2024.12.06 |
[AWS] SSH로 접속하여 AWS configure 하는 방법 (0) | 2024.12.05 |
[AWS] IAM 새 사용자 (Full Access) 생성 및 Access Key 생성 (0) | 2024.12.05 |
[AWS] Apache2 다운로드 후, mysql을 통해 만든 테이블을 띄우기 (1) | 2024.12.05 |