Kubernetes services

K8s exposes pods functionality through services. Services in the Kubernetes world are abstractions that describe a set of endpoints that are related together: multiple web servers multiple mail transfer agents that share the sending load multiple applications that expose a functionality When deploying an application in Kubernetes you have several options to choose from: deployments Read More »

Kubernetes networking

Description This article explains how pods can communicate in a cluster of containers. It starts by explaining how the Linux kernel facilitates the configuration through networking namespaces and advances to how these namespaces are used by containers and K8s. I will not use the term "pod"( group of one or more containers ) as it Read More »