<aside> 📒 Table of contents

1️⃣ Cluster란? 2️⃣ Cluster Architecture 3️⃣ Control Plane 4️⃣ Node

</aside>

Cluster란?

Cluster Architecture

하드웨어 수준에서 Kubernetes Cluster는 여러 node로 구성되며, 두 가지 유형으로 나눌 수 있다

  1. 마스터 노드

    전체 Kubernetes system을 제어하고, 관리하는 Kubernetes Control Plane 을 실행한다

  2. 워커 노드

    실제 배포되는 container application을 실행한다

Untitled

Control Plane

Control Plane은 Cluster를 제어하고 작동시킨다

하나의 master node에서 실행하거나 여러 node로 분할되고 복제되어 고가용성을 보장할 수 있는 아래 요소들로 구성된다

Kubernetes API Server

API Server는 Kubernetes API를 노출하는 component이다