Kubernetes Control Plane and Data Plane Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 5: Line 5:
=Cluster=
=Cluster=


A Kubernetes cluster consists of a set of nodes. Of those, a small number are [[#Master_Node|master nodes]], which are collectively known as the [[#Control_Plane|control plane]], and a relatively larger number of [[#Worker_Node|worker nodes]], which run the cluster's workload.
A Kubernetes cluster consists of a set of [[#Node|nodes]]. Of those, a small number are [[#Master_Node|master nodes]], which are collectively known as the [[#Control_Plane|control plane]], and a relatively larger number of [[#Worker_Node|worker nodes]], which run the cluster's workload.
 
=Node=
 
A node can be a [[#Master_Node|master]] or [[#Worker_Node|worker]].


=Control Plane=
=Control Plane=

Revision as of 17:42, 19 August 2019

Internal

Cluster

A Kubernetes cluster consists of a set of nodes. Of those, a small number are master nodes, which are collectively known as the control plane, and a relatively larger number of worker nodes, which run the cluster's workload.

Node

A node can be a master or worker.

Control Plane

Master Node

Control Plane Components

API Server

Cluster Store

Controller Manager

Scheduler

Cloud Controller Manager

Data Plane

Worker Node