Kubernetes Services, ClusterIP – NodePort – ALB architecture for exposing service

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now A kubernetes service is a group of pods running in a cluster. ClusterIP is a service which is accessible only within the Kubernetes cluster. Hence, it is the internal IP of the components inside a Kubernetes cluster. NodePort is an open port for every node in the cluster. This is accessible from outside the

Read more

Pods in Kubernetes

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now A pod is the smallest working unit in Kubernetes.A pod will have one or more containers (when there are multiple containers, they share the resources on the pods) Kubernetes runs the containers through pods only.When scaling is required, the pod is replicated.Pods are ephemeral and disposable – they cannot be reinstantiated after the lifecycle,

Read more

Kubernetes worker – components and function

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Kubernetes worker or Minion or Node runs the actual workload.It reports the status of the application to the cluster “Master” and also listens to any change in the application definition on the Master. It has three components: KubeletRegisters a node with its clusterIt watches the AI server for changes in the definition of the

Read more

Kubernetes Master – components and working

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now In a Kubernetes cluster, we package our application and give it to the “Master”.Master will distribute it to the nodes (minions) which do the actual work. In the Master (representation above), there is a Control plane which has 4 components: API ServerActs as the entry point to the control plane.It exposes a REST API

Read more

Features of Kubernetes

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Tool for container orchestration – can manage multiple containers running on different nodes; it was created by Google and later made open source. It has a master which “manages” the several worker nodes which contain pods where the application is run. 2. Improves productivity through container orchestration and easy installation. hence makes it easy

Read more