1.

Kubernetes Terminology

Answer»

Terms that you should be familiar with before starting off with Kubernetes are enlisted below:

TermsExplanation
ClusterIt can be thought of as a group of physical or virtual servers where Kubernetes is installed.
Nodes

There are two types of Nodes, 



  1. Master node is a physical or virtual server that is used to control the Kubernetes cluster.

  2. Worker node is the physical or virtual server where workload runs in given container technology.


PodsThe group of containers that shares the same network namespaces.
LabelsThese are the key-value pairs defined by the user and associated with Pods.
MasterIt controls plane components to provide access points for admins to manage the cluster workloads.
ServiceIt can be viewed as an abstraction that serves as a proxy for a group of Pods performing a "service".

Since now we have a fair understanding of what Kubernetes is, let's now jump to the cheat sheet.




Discussion

No Comment Found