Kubernetes – Labels & Selectors

Kubernetes – Labels & Selectors Labels Labels are key-value pairs that are attached to pods, replication controllers,s and services. They are used as identifying attributes for objects such as pods and replication controllers. They can be added to an object at creation time and can be added or modified at the run time. Labels are … Read more

Kubernetes Architecture

Kubernetes Architecture Kubernetes follows a client-server architecture. Wherein, we have master installed on one machine and the node on separate Linux machines.   The key components of master and node are defined in the following section. Kubernetes – Master Machine Components Following are the components of the Kubernetes Master Machine. etcd It stores the configuration … Read more

Kubernetes – introduction

Kubernetes – introduction Kubernetes is a container management technology developed in Google lab to manage containerized applications in different kinds of environments such as physical, virtual, and cloud infrastructure. It is an open-source system that helps in creating and managing the containerization of applications. Anyone who wants to understand Kubernetes should have an understating of … Read more