Kubernetes 설치
-
[Kubernetes] 쿠버네티스 설치하기 (4) - Deploy an app인프라/Kubernetes 2020. 11. 16. 15:26
이전 시간까지 Master Node 1대, Slave Node 1대를 설치였다! 시작하기에 앞서서 쿠버네티스가 container runtime 환경에서 동작한다는 의미를 눈으로 직접 확인해보자 [Master Node] docker ps Master Node에서 Docker에 의해 떠있는 container 목록이다! - calico-kube-controllers - calico-node - coredns - kube-proxy - kube-apiserver - kube-scheduler - kube-controller-manager - etcd [Slave Node] - calico-node - kube-proxy 아래의 쿠버네티스 컴포넌트들에 대해 설명하고있는 것과 대부분이 일치하고있다!! Kuberne..
-
[Kubernetes] 쿠버네티스 설치하기 (1) - Container runtimes인프라/Kubernetes 2020. 11. 10. 00:34
Container runtimes You need to install a container runtime into each node in the cluster so that Pods can run there. This page outlines what is involved and describes related tasks for setting up nodes. This page lists details for using several common container runtimes with kubernetes.io 위의 운영환경의 쿠버네티스 Getting started를 보며 이해와 동시에 설치를 진행해 나가도록 하자! 한국어로도 페이지를 볼 수 있지만 무슨 의미인지 정말 알아먹기 힘들어서 영어로 문서를 ..