Kubernetes is an orchestrator. Its task is to manage the containerized workload running over its managed environment. Since its an orchestrator, its primary tasks also include scheduling of the pods over the best possible available node that is taken care of by one of the Control Plane’s components – Scheduler. But what if we want to … Continue reading How to Schedule Pods on Nodes in Kubernetes
Tag: kubernetes
Helm v2: Package Manager for Kubernetes
Hello readers, If you are here, I believe you must be aware of the Kubernetes world and how the deployment takes place with kubectl. In this blog, I’ll be covering up the limitations of deploying the services via kubectl and how helm is eliminating them, Helm Architecture its installation, its concepts and some of its commands. An Introduction … Continue reading Helm v2: Package Manager for Kubernetes
ReplicationController and ReplicaSet in Kubernetes
Hello readers, Welcome to another blog on kubernetes. My previous blog was on pods. Today, I’ll be covering ReplicationController and ReplicaSet, which are considered as wrappers on a pod. So before going further, I would like you to go through my previous blog and get a basic idea on pods. Replication Controller As discussed above, … Continue reading ReplicationController and ReplicaSet in Kubernetes
Kubernetes Pods: The Basic Deployable Unit
Hello readers, I’ll be covering about the basic unit of execution in Kubernetes, which is Pod. What are pods? Pods are the atomic unit of scheduling in kubernetes. Its the smallest and the simplest unit in Kubernetes object model that you create and deploy. A pod consist of 1 or more containers which shares common storage and network namespaces. … Continue reading Kubernetes Pods: The Basic Deployable Unit
Overview of Kubernetes Architecture
Hello readers, in this blog, I’ll be covering what Kubernetes is and will give you an overview of Kubernetes’ master-worker architecture and its components. So let’s get started. What is Kubernetes? Kubernetes is an open source container orchestration tool, or we can say it’s a container management tool. Here, I’ve used the term orchestration, which defines … Continue reading Overview of Kubernetes Architecture


