DEV Community

Discussion on: Getting Started Tutorial for Learning Kubernetes

Collapse
 
marzelin profile image
Marc Ziel
  1. Kubernetes Control Plane or Master Node

Master Node is and outdated term, you should use Control Plane (it can run on a node).

  1. Worker nodes

It's either a worker machine or a node - worker node is a misuse.

  1. Controller Manager : This component manages the four controller processes of Kubernetes

There are many more controllers in K8s. Those four are only a small part.

It runs a single-node Kubernetes cluster

You can run multinode cluster with minikube:

minikube start --nodes 2 -p multinode-demo
Enter fullscreen mode Exit fullscreen mode
Collapse
 
chefgs profile image
Saravanan Gnanaguru • Edited

Thanks Marcin for sharing the inputs, as it will be helpful for my learning.. I’ll make sure changes are updated.