- 정의
- Kubernetes Master 와 Kubernetes Node 간 커뮤니케이션을 담당하는 프로세스
- It manages the Pods and the containers running on a machine.
1 min read
... Master cluster(Kubernetes) Kubernetes Node pod(Kubernetes), deployment(Kubernetes), service(Kubernetes), kubelet
cluster(Kubernetes) Kubernetes Node kubelet
각 노드에는 kubelet 이라는 agent 가 존재하며, 이 Kubelet 이 해당 노드를 관리하고 쿠버네티스 마스터와 통신하는 역할을 함 또한, Node 는 container 운영을 담당하는 docker 또는 c...
...ersistent Volumes Volumes (Background) 콘테이너의 On-disk 파일들은 임시적이다. 이러한 특성은 콘테이너가 crash 되는 경우 파일의 손실을 발생시킨다. kubelet 이 콘테이너를 재시작해도 clean 한 상태로 진행된다. 추가적으로, 두 콘테이너가 파일을 공유하는 경우에는 pod 을 통해 공유해야되는 문제도 있다. volume 은 쿠버네티스의 추상적 ...
probes 들은 kubelet 가 container 의 상태를 조사하는데 사용하는 일종의 지표 역할을 한다.
Kubernetes Node A Node is a worker machine in Kubernetes and may be either a virtual or a physical machine, depending on the cluster.
Kubernetes Kubernetes is a portable, extensible, open-source platform for managing containerized workloads and services, that facilitates both declarative configuration and...
Kubernetes Master Kubernetes Master 는 예전 문서에서 control plane 을 부르던 표현이다. 최신 Kubernetes 문맥에서는 master 라는 말보다 control plane 이 더 권장된다.
Kubernetes Pod A Pod is the basic execution unit of a Kubernetes application.
probe(k8s) Liveness, Readiness and Startup Probes (probe: 조사) (관련 링크) probes 들은 kubelet 가 container 의 상태를 조사하는데 사용하는 일종의 지표 역할을 한다.
Persistent Volumes Volumes (Background) 콘테이너의 On-disk 파일들은 임시적이다. 이러한 특성은 콘테이너가 crash 되는 경우 파일의 손실을 발생시킨다. kubelet 이 콘테이너를 재시작해도 clean 한 상태로 진행된다.
Kubernetes Cluster Kubernetes coordinates a highly available cluster of computers that are connected to work as a single unit.
Kubectl 2. Lesson Learned 2.1. Pod Status pod 상태를 보면 Init:0/1 이렇게 되어 있는데, 이것은 팟이 초기화 컨테이너 (init container 를 포함하고 있고, 해당 컨테이너의 작업이 마무리 되지 않았다는 뜻이다.
Once you have a running Kubernetes cluster, you can deploy your containerized applications on top of it.
Statefulset a Kubernetes resource object that manages a set of pods with unique identities.