다음은 쿠버네티스 스터디 자료를 참고해 정리한 내용입니다.
<4> 삭제
Stack name
seo32
입력하지 않으면 nickname.cndk.k8s 로 생성됨
My-VPC 와 Public Subnet 1개가 생긴다.
5
dig +short ns seo31.cndk.k8s
ns-1024.awsdns-00.org.
ns-1536.awsdns-00.co.uk.
ns-0.awsdns-00.com.
ns-512.awsdns-00.net.
설치한 EC2로 로그인
kops-ec2
ap-northeast-1
//싱가포르
REGION=ap-southeast-1
쿠버네티스 설치할때 필요한 설정파일을 위한 S3 저장소를 만든다.
echo $REGION
echo $NAME
kops create cluster --zones="$REGION"a --networking calico --master-size t3.medium --node-size t3.medium --node-count=2 --ssh-public-key ~/.ssh/id_rsa.pub --dns private $NAME -y
(설치에 30분 소요됨)
Public 도메인이 있는경우와 설치 명령어가 조금 다름 - private 라는 명령어가 들어감~
Using cluster from kubectl context: seo4.cndk.k8s
Validating cluster seo4.cndk.k8s
INSTANCE GROUPS
NAME ROLE MACHINETYPE MIN MAX SUBNETS
master-ap-southeast-1a Master t3.medium 1 1 ap-southeast-1a
nodes-ap-southeast-1a Node t3.medium 2 2 ap-southeast-1a
NODE STATUS NAME ROLE READY
ip-172-20-45-237.ap-southeast-1.compute.internal master True
ip-172-20-54-176.ap-southeast-1.compute.internal node True
ip-172-20-59-102.ap-southeast-1.compute.internal node True
Your cluster seo4.cndk.k8s is ready
NAME CLOUD ZONES
seo4.cndk.k8s aws ap-southeast-1a
Master API 서버에서 실습하도록 하자~
설정 파일을 API 서버로 복사가 필요하다.
설정파일로 명령을 날릴수 있다~
ssh 키를 api 서버로 복사
api 서버로 ssh로 접속
ubuntu@ip-172-20-60-173:~$
// 접속 됨
클러스터 생성 확인?
master 1대
node 2대 생김
NAME STATUS ROLES AGE VERSION
ip-172-20-45-237.ap-southeast-1.compute.internal Ready control-plane,master 21m v1.20.8
ip-172-20-54-176.ap-southeast-1.compute.internal Ready node 18m v1.20.8
ip-172-20-59-102.ap-southeast-1.compute.internal Ready node 18m v1.20.8
로컬 PC에 쿠버네티스 설치하는법
https://brunch.co.kr/@topasvga/1667https://brunch.co.kr/@topasvga/1682
<4> 삭제
사용하지 않을때 삭제한다.
1
EC2 > Autoscaling 그룹에서 반드시 Autoscaling 그룹을 삭제하라.
삭제하지 않으면 EKS node 들이 다시 자동 생성 된다.
EC2에 가서 EC2 들이 삭제되었는지 확인하라.~
2
echo $NAME
kops delete cluster $NAME --yes
3
AWS CloudFormation 스택 삭제로 kops-ec2 등 명령내리는 EC2 삭제
4
EKS > 클러스터 에서 삭제 되었는지 반드시 확인하라~
다음 과정
https://brunch.co.kr/@topasvga/1682
https://brunch.co.kr/@topasvga/1656