클라우드 네이티브를 위한 쿠버네티스 실전 프로젝트
-
클라우드 네이티브를 위한 쿠버네티스 실전 프로젝트카테고리 없음 2021. 10. 15. 23:18
#가상 환경 wsl2 우분투 20 #책 소개 - 클라우드 네이티브를 위한 쿠버네티스 실전 프로젝트 2.2.2 EKS 클러스터 구축 EKSCTL 실행 CONFIG eksctl create cluster \ --vpc-public-subnets \ --name eks-work-cluster \ --region ap-northeast-2 \ --version 1.19 \ --nodegroup-name eks-work-nodegroup \ --node-type t2.small \ --nodes 2 \ --nodes-min 2 \ --nodes-max 5 \ 2.3.4 베스천 호스트에 도구 설치 sudo yum install -y git sudo amazon-linux-extras install -y postgr..