Tagged articles
11 articles
Page 1 of 1
Cloud Native Technology Community
Cloud Native Technology Community
May 17, 2023 · Cloud Native

Why Do You Need Kubernetes Multi‑Cluster? Core Challenges and Design Principles

This article explains the motivations behind Kubernetes multi‑cluster deployments, outlines common use cases such as isolation and high‑availability, and analyzes core management elements including deployment models, control‑plane architectures, network connectivity, service discovery, cross‑cluster scheduling, application model extensions, and treating clusters as resources.

Cloud NativeCluster ManagementKubernetes
0 likes · 23 min read
Why Do You Need Kubernetes Multi‑Cluster? Core Challenges and Design Principles
Architect's Guide
Architect's Guide
Dec 14, 2022 · Cloud Native

Understanding Underlay and Overlay Network Models in Kubernetes

This article explains Kubernetes networking models, detailing the underlay network infrastructure, overlay techniques, and common CNI implementations such as Flannel, Calico, IPVLAN, and VxLAN, while comparing their architectures, protocols, and configuration considerations.

CNICalicoFlannel
0 likes · 12 min read
Understanding Underlay and Overlay Network Models in Kubernetes
Top Architect
Top Architect
Nov 21, 2022 · Cloud Native

Understanding Underlay and Overlay Network Models in Kubernetes

This article provides a comprehensive overview of Kubernetes networking by explaining the concepts of underlay and overlay network models, describing their implementations such as flannel host‑gw, Calico BGP, IPVLAN/MACVLAN, and tunneling technologies like VxLAN and IPIP, and offering practical references for each approach.

CNICalicoFlannel
0 likes · 14 min read
Understanding Underlay and Overlay Network Models in Kubernetes
Open Source Linux
Open Source Linux
Nov 18, 2022 · Cloud Native

Understanding Kubernetes Underlay and Overlay Network Models: A Deep Dive

This article provides a comprehensive overview of Kubernetes networking, explaining the concepts of underlay and overlay network models, their implementations with Flannel, Calico, IPVLAN, MACVLAN, Multus, DANM, and common tunneling protocols such as VxLAN, IPIP, and GRE, while highlighting practical configuration notes and architectural differences.

CNICalicoFlannel
0 likes · 14 min read
Understanding Kubernetes Underlay and Overlay Network Models: A Deep Dive
dbaplus Community
dbaplus Community
Jul 20, 2022 · Cloud Native

Mastering Kubernetes: Core Concepts from Pods to Network Architecture

This article provides a comprehensive overview of Kubernetes, covering its core functions, main components, service‑discovery mechanisms, pod‑level resource sharing, common CNI plugins, multi‑layer load balancing, isolation dimensions, and the fundamental network model principles that guide large‑scale container deployments.

CNIKubernetesNetwork Model
0 likes · 11 min read
Mastering Kubernetes: Core Concepts from Pods to Network Architecture
Open Source Linux
Open Source Linux
Jun 1, 2022 · Cloud Native

How Does Kubernetes Really Handle Container Networking? A Deep Dive

This article explains Kubernetes' network model, covering container‑to‑container, pod‑to‑pod, pod‑to‑service, and external traffic flows, while detailing network namespaces, veth pairs, Linux bridges, iptables/IPVS load‑balancing, and cloud‑native solutions like LoadBalancer and Ingress controllers.

IPVSIngressKubernetes
0 likes · 22 min read
How Does Kubernetes Really Handle Container Networking? A Deep Dive
Liangxu Linux
Liangxu Linux
Apr 14, 2021 · Cloud Native

Mastering Kubernetes Architecture: From Pods to Multi‑Center Deployments

This article provides a comprehensive overview of Kubernetes architecture, covering container operations, core components, multi‑center deployment models, service discovery methods, pod resource sharing, CNI plugins, load‑balancing layers, isolation dimensions, network principles, and IP address classifications.

CNICloud NativeKubernetes
0 likes · 13 min read
Mastering Kubernetes Architecture: From Pods to Multi‑Center Deployments
Tencent Cloud Developer
Tencent Cloud Developer
Feb 22, 2021 · Databases

Deep Dive into Redis Multi-Threaded Network Model: From Single-Threaded Reactor to I/O Threading

The article traces Redis’s shift from its original single‑threaded reactor model to the I/O‑threaded architecture introduced in version 6, explaining how atomic operations and round‑robin client distribution let separate threads handle network I/O and parsing while the main thread executes commands, yielding roughly a two‑fold throughput boost but retaining a single‑threaded command core and incurring brief CPU spikes from busy‑wait synchronization.

I/O MultiplexingNetwork ModelReactor Pattern
0 likes · 34 min read
Deep Dive into Redis Multi-Threaded Network Model: From Single-Threaded Reactor to I/O Threading