Tagged articles
32 articles
Page 1 of 1
MaGe Linux Operations
MaGe Linux Operations
Jun 12, 2025 · Cloud Native

Deep Dive into Kubernetes Networking: Layers, Models, and Plugins

This article provides a comprehensive deep‑dive into Kubernetes networking, explaining the four networking layers (CNI, Pod, Service, Ingress), detailing the underlying models, comparing popular plugins such as Kube‑router, Flannel, Calico, Weave Net and Cilium, and offering concrete YAML examples for deployments, services and pods.

CNIIngressKubernetes
0 likes · 16 min read
Deep Dive into Kubernetes Networking: Layers, Models, and Plugins
Efficient Ops
Efficient Ops
Sep 4, 2023 · Cloud Native

Journey Through the Kubernetes Zoo: Learn Pods, Deployments, Ingress & More

A playful narrative follows Phippy and her niece Zee as they explore a Kubernetes‑themed zoo, turning whimsical animal scenes into clear explanations of Pods, ReplicaSets, Deployments, DaemonSets, Ingress, CronJobs and CustomResourceDefinitions for cloud‑native practitioners.

DeploymentsIngressKubernetes
0 likes · 8 min read
Journey Through the Kubernetes Zoo: Learn Pods, Deployments, Ingress & More
MaGe Linux Operations
MaGe Linux Operations
Aug 13, 2023 · Cloud Native

How Pods Really Work: Inside Containers, Namespaces, and cgroups

This article explores the inner workings of Kubernetes Pods by examining how containers share network, IPC, mount, and PID namespaces, how cgroups enforce resource limits, and how similar behavior can be reproduced with Docker, providing hands‑on examples and code snippets for deeper understanding.

ContainersKubernetesNamespaces
0 likes · 19 min read
How Pods Really Work: Inside Containers, Namespaces, and cgroups
Architecture Digest
Architecture Digest
Mar 20, 2023 · Cloud Native

Kubernetes: What It Is and Why It’s Hard to Get Started

This article provides a concise, question‑and‑answer overview of Kubernetes, explaining its role as a distributed container‑orchestration system, the architecture of master and worker nodes, core components such as etcd, kube‑apiserver, scheduler, controllers, and how services, pods, labels, and scaling operate within a cluster.

Cloud NativeCluster ManagementControllers
0 likes · 8 min read
Kubernetes: What It Is and Why It’s Hard to Get Started
Efficient Ops
Efficient Ops
Dec 20, 2022 · Cloud Native

Understanding Kubernetes Pods, Services, and Load Balancing Basics

This article explains Kubernetes pod architecture, networking, external exposure, and how Services use virtual IPs and selectors to provide load balancing and dynamic discovery of pod changes, including the role of kube-proxy and the limitations of using Nginx for pod-level balancing.

Cloud NativeKubernetesPods
0 likes · 8 min read
Understanding Kubernetes Pods, Services, and Load Balancing Basics
Open Source Linux
Open Source Linux
Sep 28, 2022 · Cloud Native

How Kubernetes Routes Packets: Inside Pods, CNI, and Services

This article explains how Kubernetes forwards packets from the initial web request through pod network namespaces, the role of the pause container, veth pairs, bridges, CNI plugins, and iptables‑based service NAT, providing a step‑by‑step view of intra‑cluster and external traffic handling.

CNIContainersKubernetes
0 likes · 28 min read
How Kubernetes Routes Packets: Inside Pods, CNI, and Services
Open Source Linux
Open Source Linux
Jul 29, 2022 · Cloud Native

Demystifying Kubernetes Networking: From Pods to Services and Beyond

This comprehensive guide explains Kubernetes' networking model, covering core concepts, pod-to-pod communication, service routing, DNS integration, and external traffic handling, while detailing the underlying Linux network namespaces, virtual Ethernet pairs, bridges, and CNI plugins.

CNIIngressKubernetes
0 likes · 33 min read
Demystifying Kubernetes Networking: From Pods to Services and Beyond
MaGe Linux Operations
MaGe Linux Operations
Jul 19, 2022 · Cloud Native

Demystifying the Kubernetes Networking Model: From Pods to Services

This comprehensive guide explains the Kubernetes networking model, covering core concepts such as the API server, controllers, pods, nodes, and the layered network architecture, then walks through pod‑to‑pod, pod‑to‑service, and external traffic flows using CNI plugins, iptables, IPVS, bridges, and ingress controllers.

CNIKubernetesNetworking
0 likes · 32 min read
Demystifying the Kubernetes Networking Model: From Pods to Services
Efficient Ops
Efficient Ops
Jul 3, 2022 · Cloud Native

Understanding Kubernetes: Core Components and How They Work Together

This article provides a concise, concept‑level overview of Kubernetes architecture, explaining the roles of master and worker nodes, Pods, networking, scheduling, storage, services, scaling, and controller interactions, illustrated with diagrams to help beginners grasp the system’s complexity.

Cloud NativeCluster ArchitectureKubernetes
0 likes · 10 min read
Understanding Kubernetes: Core Components and How They Work Together
dbaplus Community
dbaplus Community
May 23, 2022 · Cloud Native

Why Kubernetes Is the Core of Cloud‑Native Architecture: A Deep Dive

This article provides a comprehensive overview of Kubernetes, covering its revolutionary role in cloud computing, master‑worker architecture, core concepts such as Pods and Controllers, storage and networking models, workload types, and extensibility through CRI, CNI, and CSI standards.

Cloud NativeKubernetesNetworking
0 likes · 18 min read
Why Kubernetes Is the Core of Cloud‑Native Architecture: A Deep Dive
Efficient Ops
Efficient Ops
Mar 14, 2022 · Cloud Native

Demystifying Kubernetes Service Discovery: From Pods to Stable Endpoints

This article explains Kubernetes service discovery by first covering essential network concepts, then detailing how Services, Endpoints, and kube-proxy work together to provide stable, load‑balanced communication between dynamic Pods in a cloud‑native environment.

Cloud NativeKubernetesNetworking
0 likes · 12 min read
Demystifying Kubernetes Service Discovery: From Pods to Stable Endpoints
Practical DevOps Architecture
Practical DevOps Architecture
Dec 19, 2021 · Cloud Native

Creating Kubernetes Pods and Performing Basic Operations

This article provides step‑by‑step commands for creating Kubernetes pods, pulling images, running simple applications, exposing deployments, checking logs, and managing resources such as scaling, updating images, and viewing pod details, offering a practical guide for verifying network access and basic cluster operations.

Cloud NativeDevOpsPods
0 likes · 4 min read
Creating Kubernetes Pods and Performing Basic Operations
MaGe Linux Operations
MaGe Linux Operations
Nov 20, 2021 · Cloud Native

Understanding Kubernetes Pods, Services, and Load Balancing

This article explains Kubernetes pod fundamentals, how pods obtain external access, the challenges of using Nginx for load balancing, and why the Service resource with label selectors, kube-proxy, and virtual IPs provides a robust solution for pod traffic distribution.

Cloud NativeKubernetesPods
0 likes · 7 min read
Understanding Kubernetes Pods, Services, and Load Balancing
Efficient Ops
Efficient Ops
Nov 10, 2021 · Cloud Native

How Do Pods and Services Enable Load Balancing in Kubernetes?

This article reviews the core structure of Kubernetes pods, explains how pods expose services externally, details load‑balancing mechanisms using Services and kube‑proxy, and illustrates the role of selectors, VIPs, and iptables/ipvs in dynamic pod discovery and traffic routing.

Cloud NativeNetworkingPods
0 likes · 7 min read
How Do Pods and Services Enable Load Balancing in Kubernetes?
Efficient Ops
Efficient Ops
Aug 15, 2021 · Cloud Native

Master Kubernetes Core Components: Pods, ReplicaSets, Deployments & StatefulSets

This article explains the fundamental principles of Kubernetes core components—including pods, their networking and storage mechanisms, the role of ReplicaSets for scaling, how Deployments enable rolling updates, and how StatefulSets manage stateful services—providing clear insights and visual diagrams for each concept.

Cloud NativeDeploymentPods
0 likes · 10 min read
Master Kubernetes Core Components: Pods, ReplicaSets, Deployments & StatefulSets
Open Source Linux
Open Source Linux
Jul 25, 2021 · Cloud Native

Demystifying Kubernetes: Core Components and How They Work Together

This article provides a concise, question‑driven overview of Kubernetes, explaining the roles of master and worker nodes, pod networking, scheduling, storage with etcd, service exposure, scaling mechanisms, and how the various controllers collaborate to manage a cloud‑native cluster.

Cloud NativeKubernetesPods
0 likes · 10 min read
Demystifying Kubernetes: Core Components and How They Work Together
Selected Java Interview Questions
Selected Java Interview Questions
May 17, 2021 · Cloud Native

Kubernetes Interview Guide: Architecture, Pods, Probes, Rolling Updates, Services, Labels, and Data Persistence

This article provides a comprehensive overview of Kubernetes, covering its architecture, master and node components, pod lifecycle, health probes, rolling updates, image pull policies, services, label selectors, DaemonSets, Jobs, and data persistence methods, with practical YAML examples and command snippets.

Cloud NativeKubernetesLabels
0 likes · 21 min read
Kubernetes Interview Guide: Architecture, Pods, Probes, Rolling Updates, Services, Labels, and Data Persistence
Open Source Linux
Open Source Linux
Feb 6, 2021 · Cloud Native

How Pods Communicate: Shared Volumes and IPC in Kubernetes

This article explains the four Kubernetes networking models and demonstrates two primary ways for containers inside a Pod to exchange data—using shared volumes and inter‑process communication (IPC)—with detailed YAML examples and command‑line verification steps.

Container CommunicationIPCKubernetes
0 likes · 7 min read
How Pods Communicate: Shared Volumes and IPC in Kubernetes
Alibaba Cloud Native
Alibaba Cloud Native
Sep 14, 2019 · Cloud Native

Master the 11 Core Components of Kubernetes in Minutes

This article provides a concise, beginner-friendly overview of Kubernetes, covering its origins, key concepts such as Pods, Nodes, Labels, Service Discovery, ReplicaSet, DaemonSet, StatefulSet, Jobs, ConfigMaps, Secrets, Deployments, and Storage, and explains how each component fits into a cloud‑native architecture.

DeploymentsKubernetesPods
0 likes · 10 min read
Master the 11 Core Components of Kubernetes in Minutes
21CTO
21CTO
Aug 17, 2019 · Cloud Native

A Father‑Daughter Tale That Explains Kubernetes Basics

Through a charming story of a curious daughter and her father's illustrated guide, the article introduces Kubernetes concepts such as pods, replication controllers, services, volumes, and namespaces, using the adventures of a PHP app named Phippy to make complex container orchestration easy to understand.

ContainersNamespacePods
0 likes · 7 min read
A Father‑Daughter Tale That Explains Kubernetes Basics
MaGe Linux Operations
MaGe Linux Operations
Jul 19, 2019 · Cloud Native

Can a PHP App Sail on a Kubernetes Ship? A Child’s Tale of Pods

The story follows a tiny PHP application named Phippy, who moves from a lonely shared host into a container, meets the wise Captain Kube, learns about Pods, Replication Controllers, services, volumes, and namespaces, and discovers how Kubernetes orchestrates isolated yet connected workloads, illustrated through a whimsical maritime metaphor.

Cloud NativeContainersKubernetes
0 likes · 9 min read
Can a PHP App Sail on a Kubernetes Ship? A Child’s Tale of Pods
Programmer DD
Programmer DD
Jul 14, 2019 · Cloud Native

A Tale of Phippy: Understanding Kubernetes Through Storytelling

Through the whimsical story of a lonely PHP app named Phippy, the article introduces core Kubernetes concepts—containers, Pods, Replication Controllers, Services, Volumes, and Namespaces—using vivid metaphors to help readers grasp how container orchestration works in modern cloud-native environments.

ContainersKubernetesNamespace
0 likes · 10 min read
A Tale of Phippy: Understanding Kubernetes Through Storytelling
Efficient Ops
Efficient Ops
Jun 14, 2018 · Cloud Native

Understanding Kubernetes: Core Concepts Explained Through Q&A

This article provides a concise, question‑driven overview of Kubernetes, covering the roles of master and worker nodes, pod scheduling, data storage with etcd, service exposure, dynamic scaling, and how the various control‑plane components collaborate to manage a distributed container cluster.

Cloud NativeKubernetesPods
0 likes · 9 min read
Understanding Kubernetes: Core Concepts Explained Through Q&A
Java High-Performance Architecture
Java High-Performance Architecture
May 20, 2018 · Cloud Native

What Is Kubernetes? Core Concepts Explained for Beginners

An overview of Kubernetes introduces its role as a container orchestration engine, highlights self‑healing and zero‑downtime deployment, and explains key components such as kubectl, master and worker nodes, pods, deployments, services, secrets, and how they work together in a cloud‑native environment.

DeploymentKubernetesPods
0 likes · 5 min read
What Is Kubernetes? Core Concepts Explained for Beginners