본문 바로가기
반응형

IT Tech/Cloud47

[실습] 컨테이너 실습 사이트 - O'Reilly katacoda https://www.katacoda.com/ Katacoda - Interactive Learning Platform for Software Engineers Learn the latest technologies with our hands-on labs www.katacoda.com 무료 온라인 강의 및 실습이 가능 1. Docker, container Runtimes, Builders and Registeries https://www.katacoda.com/courses/container-runtimes 2. Kubernetes Introduction https://www.katacoda.com/courses/kubernetes 3. Extending Kubernetes https://www.kata.. 2022. 4. 14.
Install Kubenetes from Scratch https://youtu.be/-ovJrIIED88 2022. 3. 25.
Kubernetes Networking 1. Pod Network - CNI에서 관리하는 포트간 통신에 사용, 클러스터 전체 네트워킹 2. Service Network - Kube-proxy가 관리하는 Cluster-wide 범위의 Virtual IP - Pod의 Endpoint 리스트 목록을 관리 2022. 3. 10.
Amazon EKS(Elastic Kubernetes Service) POD : 컨테이너들을 구성하는 논리적인 단위 kubelet : kube-proxy : Container runtime : 도커로 pod 실행 etcd: 클러스터 데이터, 상태정보 저장 Controller manger: pod상태(Desired ↔ Current) 체크 -> 유지 Scheduler : node에 할당되지 않은 pod 확인 -> node 내 배포 kube apiserver : frontend(인증 -> 전달) EKS : Control Plane을 서비스화하여 만든 AWS 상품 사용자는 Worker Node들만 신경쓰면 됨 2022. 3. 4.
kubectl 설치하기 curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.20.0/bin/windows/amd64/kubectl.exe λ kubectl kubectl controls the Kubernetes cluster manager. Find more information at: https://kubernetes.io/docs/reference/kubectl/overview/ Basic Commands (Beginner): create Create a resource from a file or from stdin. expose Take a replication controller, service, deployment or pod and expos.. 2022. 2. 24.
반응형