Kubernetes : Abs:Begginers : Introduction : UDY: Session 9 : Kubernetes Architecture

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Nodes : A node is a machine Physical or Virtual on which Kubernetes is Installed . A node is a worker machine and that is where containers will be launched by Kubernetes it was also known as Minions in the past. So you might use these terms interchangeably . What if the node on which your application is running fails , well obviously our application goes down . So you need to have more than one node . Cluster : A cluster is a set of nodes grouped together , this way even if your one node fails you still have your application accessible from the other nodes , more over having multiple node helps in sharing the load Master : Now we have a cluster but who is responsible for managing the cluster, where is the information about the members of the cluster stored . How are the nodes monitored . When a node fails , ...