Tagged articles
134 articles
Page 1 of 2
MaGe Linux Operations
MaGe Linux Operations
Apr 30, 2026 · Cloud Native

Kubernetes Service Connectivity Issues? A Step‑by‑Step Guide from Pods to Services to Ingress

This article provides a systematic, layer‑by‑layer troubleshooting guide for Kubernetes service connectivity problems, covering pod health, service and endpoint configuration, kube‑proxy rules, CNI plugins, Ingress controllers, DNS resolution, and NetworkPolicy, with concrete commands, examples, and preventive scripts.

IngressKubernetesPod
0 likes · 39 min read
Kubernetes Service Connectivity Issues? A Step‑by‑Step Guide from Pods to Services to Ingress
MaGe Linux Operations
MaGe Linux Operations
Apr 19, 2026 · Cloud Native

Unlock the Full Deployment‑to‑Service Workflow in Kubernetes

This comprehensive guide walks operators through the entire Kubernetes workflow from creating a Deployment to exposing a Service, explaining core resources, control loops, scheduling, networking, rolling updates, troubleshooting steps, best‑practice configurations, performance tuning, and security hardening.

Cloud NativeDeploymentKubernetes
0 likes · 29 min read
Unlock the Full Deployment‑to‑Service Workflow in Kubernetes
MaGe Linux Operations
MaGe Linux Operations
Mar 12, 2026 · Backend Development

How to Deploy vLLM Inference Service on Kubernetes with Ingress and Service Load Balancing

This guide walks through deploying a production‑grade vLLM inference service on Kubernetes, covering GPU resource scheduling, Service and Ingress configuration, session affinity, health checks, performance tuning, scaling, monitoring, fault‑tolerance, and best‑practice recommendations for high‑availability AI workloads.

GPUIngressKubernetes
0 likes · 47 min read
How to Deploy vLLM Inference Service on Kubernetes with Ingress and Service Load Balancing
MaGe Linux Operations
MaGe Linux Operations
Feb 12, 2026 · Operations

Master Systemd: Build Production‑Ready Service Files from Scratch

This comprehensive guide walks you through Systemd’s architecture, explains every Unit type and Service section, shows how to choose the right Service Type, configure restart policies, watchdogs, resource limits, security hardening, logging, Timers and Socket activation, and provides a complete production‑grade Service file template with deployment steps and a checklist.

LinuxServiceresource-limits
0 likes · 41 min read
Master Systemd: Build Production‑Ready Service Files from Scratch
Raymond Ops
Raymond Ops
Nov 10, 2025 · Cloud Native

Mastering Kubernetes Networking: Deep Dive into k8s Network Layers and Plugins

This article provides a comprehensive overview of Kubernetes networking, explaining the four network layers—CNI, Pod, Service, and Ingress—detailing their functions, exploring common network models, and presenting practical examples of popular plugins such as Kube-router, Flannel, Calico, Weave Net, and Cilium with deployment YAML code.

CNIIngressKubernetes
0 likes · 17 min read
Mastering Kubernetes Networking: Deep Dive into k8s Network Layers and Plugins
Mike Chen's Internet Architecture
Mike Chen's Internet Architecture
Oct 13, 2025 · Cloud Native

Mastering Kubernetes Load Balancing: Internal & External Strategies Explained

This article provides a comprehensive overview of Kubernetes load balancing, detailing internal Service‑based balancing and external cloud‑provider solutions, illustrating configuration examples for ClusterIP, NodePort, and LoadBalancer types, and comparing common traffic‑distribution algorithms such as round‑robin, least connections, session affinity, and weighted routing.

Cloud NativeClusterIPKubernetes
0 likes · 4 min read
Mastering Kubernetes Load Balancing: Internal & External Strategies Explained
AndroidPub
AndroidPub
Jul 24, 2025 · Mobile Development

Master Android IPC: Services, AIDL, Intents, Broadcasts, Messenger, FileProvider

This guide explores Android's inter‑process communication options—running services in separate processes, defining AIDL interfaces, using explicit and implicit Intents, BroadcastReceiver, Messenger, FileProvider, and ContentProvider—detailing configuration, code examples, and when to choose each method for efficient, secure component interaction.

AIDLAndroidBroadcastReceiver
0 likes · 11 min read
Master Android IPC: Services, AIDL, Intents, Broadcasts, Messenger, FileProvider
Full-Stack DevOps & Kubernetes
Full-Stack DevOps & Kubernetes
Jul 16, 2025 · Cloud Native

Mastering Kubernetes Service Deployment: From Docker Build to HPA

This guide walks you through the complete Kubernetes service deployment workflow, covering Docker image creation with multi‑stage builds, pushing to a registry, defining Deployment and Service resources, applying and monitoring them, managing configuration, implementing horizontal pod autoscaling, and integrating logging and monitoring solutions.

ConfigMapHPAKubernetes
0 likes · 8 min read
Mastering Kubernetes Service Deployment: From Docker Build to HPA
Architect's Guide
Architect's Guide
May 25, 2025 · Backend Development

Integrating Elasticsearch with MySQL in a Spring Boot Backend: Technical Selection, Common Package, Repository, Mapper, and Service Implementation

This article explains how to combine Elasticsearch and MySQL in a Spring Boot backend by selecting the technology stack, creating a shared Elasticsearch package, defining ES and MySQL entity classes, implementing repository and mapper interfaces, writing service logic, and demonstrating query testing.

ElasticsearchJavaRepository
0 likes · 17 min read
Integrating Elasticsearch with MySQL in a Spring Boot Backend: Technical Selection, Common Package, Repository, Mapper, and Service Implementation
MaGe Linux Operations
MaGe Linux Operations
Mar 15, 2025 · Cloud Native

How MetalLB Transforms Load Balancing for Bare‑Metal Kubernetes Clusters

This guide explains Kubernetes Service types, the role of MetalLB in providing LoadBalancer functionality for bare‑metal clusters, step‑by‑step installation, configuration of address pools, testing with a sample service, integration with Ingress, and an overview of the Calico network plugin for pod isolation.

CalicoCloud NativeIngress
0 likes · 14 min read
How MetalLB Transforms Load Balancing for Bare‑Metal Kubernetes Clusters
Ops Development Stories
Ops Development Stories
Mar 10, 2025 · Cloud Native

What Are Kubernetes Core Components and How Do They Work?

This article provides a comprehensive overview of Kubernetes fundamentals, covering core control‑plane and node components, key object differences such as Pod vs Deployment, Service types, ConfigMap vs Secret, scheduling, health checks, scaling, security, storage, and troubleshooting techniques.

Cloud NativeContainersDeployment
0 likes · 19 min read
What Are Kubernetes Core Components and How Do They Work?
Java Tech Enthusiast
Java Tech Enthusiast
Nov 3, 2024 · Backend Development

Using @Service to Replace @Controller in Spring Boot

In Spring Boot, a class annotated with @Service can act as a web controller if it is discovered by component scanning and carries @RequestMapping (or method‑level mapping) annotations, allowing HTTP requests to be handled just like a traditional @Controller‑annotated bean.

ControllerDependencyInjectionJava
0 likes · 7 min read
Using @Service to Replace @Controller in Spring Boot
macrozheng
macrozheng
Oct 22, 2024 · Backend Development

Can @Service Replace @Controller in Spring Boot? A Deep Dive

This article explores whether the @Service annotation can replace @Controller in Spring Boot, demonstrates a working example, explains the underlying bean registration process, and clarifies how Spring’s component scanning and request mapping enable such unconventional usage.

BackendControllerJava
0 likes · 8 min read
Can @Service Replace @Controller in Spring Boot? A Deep Dive
Top Architect
Top Architect
Jun 18, 2024 · Backend Development

Application Layering and Domain Model Conversion: Best Practices and Alibaba Specification

This article explains the importance of clear application layering, compares Alibaba's multi‑layer architecture with optimized practices, details the conversion between various domain models (DO, DTO, BO, AO, VO, Query), and provides guidelines for maintaining clean responsibilities across Controller, Service, Manager, and DAO layers.

BackendServicearchitecture
0 likes · 12 min read
Application Layering and Domain Model Conversion: Best Practices and Alibaba Specification
Cloud Native Technology Community
Cloud Native Technology Community
May 23, 2024 · Cloud Native

Kubernetes Service Network Mechanisms: Overview, Access Methods, Container Networking, Service Types, DNS, kube-proxy Modes, Source IP Preservation, and Ingress

This article provides a comprehensive guide to Kubernetes Service networking, covering container network models, intra‑ and inter‑node pod communication, Service‑Pod relationships, Service types (ClusterIP, NodePort, LoadBalancer, ExternalName), CoreDNS resolution, kube‑proxy operating modes, source IP preservation strategies, and Ingress handling.

CloudNativeDNSIngress
0 likes · 27 min read
Kubernetes Service Network Mechanisms: Overview, Access Methods, Container Networking, Service Types, DNS, kube-proxy Modes, Source IP Preservation, and Ingress
Liangxu Linux
Liangxu Linux
Mar 23, 2024 · Operations

Mastering systemd: How to Create, Configure, and Manage Custom Linux Services

This guide explains how to create custom systemd service unit files, configure permissions, environment variables, logging, and resource limits, and shows how to start, stop, and monitor services using systemctl, with detailed examples and advanced options for Linux administrators.

LinuxServiceSystem Administration
0 likes · 8 min read
Mastering systemd: How to Create, Configure, and Manage Custom Linux Services
Top Architect
Top Architect
Feb 1, 2024 · Backend Development

Best Practices for Application Layering in Backend Development

This article explains the importance of proper application layering in backend development, outlines Alibaba’s recommended layer structure, suggests optimizations for service and manager layers, describes domain model conversions such as DO, DTO, BO, and concludes with best‑practice recommendations for maintainable, clear‑boundary code.

BackendServicearchitecture
0 likes · 11 min read
Best Practices for Application Layering in Backend Development
JavaEdge
JavaEdge
Jan 28, 2024 · Backend Development

Designing a Marketing Reverse Domain for Refunds with DDD

This article explains how to model and implement a marketing reverse domain that handles coupon and asset recovery during refunds, using domain‑driven design, rule engines, and service layers, complete with state‑machine diagrams, code snippets, and practical mapping configurations.

Domain-Driven DesignMarketingModeling
0 likes · 11 min read
Designing a Marketing Reverse Domain for Refunds with DDD
System Architect Go
System Architect Go
Dec 30, 2023 · Cloud Native

How External HTTP/HTTPS Requests Reach Containers in a Kubernetes Cluster

This article explains the end‑to‑end path that an external HTTP or HTTPS request follows—from the client through DNS resolution, load balancer, ingress controller, service routing, and finally to the target container inside a Kubernetes pod—while also covering optional variations and the underlying network components.

HTTPIngressKubernetes
0 likes · 7 min read
How External HTTP/HTTPS Requests Reach Containers in a Kubernetes Cluster
Architecture Digest
Architecture Digest
Nov 16, 2023 · Backend Development

Structuring Session‑Based Scene Data with MyBatis in Java

This article explains how to redesign a JSON payload that repeats a sessionId for each scene by moving the sessionId to the outer level and using MyBatis resultMap with a collection to map a Session object containing a list of Scene objects, including Java entity definitions, mapper XML, service, and controller code.

BackendControllerJava
0 likes · 5 min read
Structuring Session‑Based Scene Data with MyBatis in Java
Test Development Learning Exchange
Test Development Learning Exchange
Nov 5, 2023 · Cloud Native

Introduction to Kubernetes Core Concepts, Networking, Services and Workloads

This article provides a comprehensive overview of Kubernetes, covering its core components such as Nodes, Pods, Services, Namespaces, Deployments, StatefulSets, Jobs and CronJobs, as well as detailed explanations of Pod networking, Service types (ClusterIP, NodePort, LoadBalancer) and practical YAML examples for each resource.

Cloud NativeJobService
0 likes · 16 min read
Introduction to Kubernetes Core Concepts, Networking, Services and Workloads
Ximalaya Technology Team
Ximalaya Technology Team
Aug 12, 2023 · Mobile Development

Why Android 8+ Blocks startService in Background and How startForegroundService Avoids Crashes

This article explains the Android 8.1+ restriction that prevents background apps from using startService, details the internal flow that leads to a Not allowed to start service crash, shows how startForegroundService works with a mandatory foreground notification timeout, and provides code‑level analysis of the ANR and crash “bombs”, UID idle handling, and practical mitigation strategies.

ANRAndroidCrash
0 likes · 41 min read
Why Android 8+ Blocks startService in Background and How startForegroundService Avoids Crashes
Top Architect
Top Architect
Jul 10, 2023 · Backend Development

Best Practices for Application Layering in Backend Development

This article explains the importance of clear application layering, describes Alibaba's recommended layer structure, proposes an optimized layering model, discusses domain model conversions across layers, and summarizes how proper layering improves code maintainability and reuse in backend systems.

BackendServicedao
0 likes · 11 min read
Best Practices for Application Layering in Backend Development
MaGe Linux Operations
MaGe Linux Operations
Apr 30, 2023 · Cloud Native

Master Kubernetes Essentials: kube-proxy, Pods, Deployments, Services & More

This article explains key Kubernetes concepts—including the kube-proxy IPVS mode versus iptables, static Pods, Pod lifecycle states, Pod creation workflow, restart policies, health probes, scheduling strategies, init containers, Deployment upgrade processes and strategies, DaemonSet characteristics, Horizontal Pod Autoscaling, Service types and load‑balancing, headless Services, external access methods, Ingress routing, image pull policies, and load‑balancer options—providing a comprehensive overview for cloud‑native practitioners.

Cloud NativeDeploymentIngress
0 likes · 16 min read
Master Kubernetes Essentials: kube-proxy, Pods, Deployments, Services & More
Full-Stack DevOps & Kubernetes
Full-Stack DevOps & Kubernetes
Apr 11, 2023 · Cloud Native

Master Kubernetes Basics: Deploy, Scale, and Update Apps with Simple Commands

This article introduces Kubernetes as an open‑source container orchestration platform, explains its core objects like Pods, Services, ReplicaSets, and Deployments, clarifies its relationship with Docker, and provides a step‑by‑step example covering deployment, exposure, scaling, rolling updates, and rollback using kubectl commands.

DeploymentDevOpsKubernetes
0 likes · 5 min read
Master Kubernetes Basics: Deploy, Scale, and Update Apps with Simple Commands
Top Architect
Top Architect
Mar 11, 2023 · Backend Development

General Architecture Overview and Implementation for Backend Systems

The article presents a practical, layered backend architecture—including gateway, business, and foundation layers—designed to replace simple early‑stage setups, improve maintainability, and handle various protocols such as HTTP and TCP while offering reusable components and technical guidelines.

DesignServicegateway
0 likes · 13 min read
General Architecture Overview and Implementation for Backend Systems
Code Ape Tech Column
Code Ape Tech Column
Feb 8, 2023 · Backend Development

Enhancing MVC Architecture with a Manager Layer in Java

The article explains the classic three‑layer MVC pattern, its shortcomings in complex Java projects, and proposes adding a Manager layer to separate generic business processing, reduce transaction scope, and improve code organization, illustrated with Spring‑based code examples.

JavaMVCService
0 likes · 9 min read
Enhancing MVC Architecture with a Manager Layer in Java
IT Architects Alliance
IT Architects Alliance
Feb 6, 2023 · Cloud Native

What Is Kubernetes and Why Is It Hard to Get Started?

This article introduces Kubernetes as a Google‑originated container‑based distributed cluster management system, explaining its architecture, core components such as Master, Nodes, Pods, Services, etcd, and detailing how communication, scheduling, storage, external access, scaling, and controller coordination work together.

Cloud NativeDistributed SystemsKubernetes
0 likes · 8 min read
What Is Kubernetes and Why Is It Hard to Get Started?
Open Source Linux
Open Source Linux
Dec 26, 2022 · Cloud Native

Why Does My Kubernetes Service Fail? 10 Common Issues and Quick Fixes

This guide walks through ten frequent Kubernetes problems—including service access failures, port mapping errors, certificate issues, pod image pull errors, init‑container hangs, and CrashLoopBackOff—explaining their causes and providing concise, step‑by‑step solutions to restore cluster functionality.

CrashLoopBackOffInitContainerKubernetes
0 likes · 7 min read
Why Does My Kubernetes Service Fail? 10 Common Issues and Quick Fixes
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
Cloud Native Technology Community
Cloud Native Technology Community
Nov 16, 2022 · Cloud Native

How Do Packets Travel Inside and Outside Kubernetes? A Deep Dive into Pods, Network Namespaces, and CNI

This article explains how Kubernetes forwards packets from the initial web request through container networking, covering the network model, pod creation steps, the role of the pause container, same‑node and cross‑node pod‑to‑pod traffic, service IP translation, and the underlying CNI, iptables, and conntrack mechanisms.

CNIKubernetesNetwork Namespace
0 likes · 28 min read
How Do Packets Travel Inside and Outside Kubernetes? A Deep Dive into Pods, Network Namespaces, and CNI
Top Architect
Top Architect
Oct 1, 2022 · Backend Development

Best Practices for Backend Application Layering and Domain Model Conversion

This article discusses the importance of proper backend application layering, outlines Alibaba's multi‑layer architecture (controller, service, manager, DAO, etc.), explains domain model transformations (DO, DTO, BO, VO, etc.), and offers practical recommendations for achieving clear responsibilities and maintainable code.

BackendServicedao
0 likes · 9 min read
Best Practices for Backend Application Layering and Domain Model Conversion
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
Qingyun Technology Community
Qingyun Technology Community
Sep 16, 2022 · Cloud Native

Mastering Kubernetes Networking: IP Types and Service Exposure Strategies

This article explains the fundamental networking components of a Kubernetes cluster, detailing the three IP types—NodeIP, PodIP, and ClusterIP—along with how services are exposed using NodePort, LoadBalancer, and Ingress, and provides practical guidance on configuring cloud‑native load balancers and Ingress controllers.

IngressKubernetesNetworking
0 likes · 14 min read
Mastering Kubernetes Networking: IP Types and Service Exposure Strategies
MaGe Linux Operations
MaGe Linux Operations
Sep 1, 2022 · Cloud Native

How to Diagnose Kubernetes Pod Network Issues: Models, Tools, and Real‑World Cases

This article introduces a systematic approach to troubleshooting Kubernetes pod network problems, covering common anomaly categories, essential tools like tcpdump, nsenter, paping and mtr, a step‑by‑step troubleshooting workflow, and detailed case studies of service connectivity failures, external host timeouts, and object‑storage access issues.

CNIKubernetesPod
0 likes · 28 min read
How to Diagnose Kubernetes Pod Network Issues: Models, Tools, and Real‑World Cases
Tencent Cloud Developer
Tencent Cloud Developer
Aug 25, 2022 · Cloud Native

Kubernetes (K8s) Complete Guide: From Architecture to Cluster Setup and Resource Management

This guide walks developers through the evolution from physical and virtual deployments to containerization, explains Kubernetes architecture and core components, demonstrates building a one‑master‑two‑node cluster with kubeadm and Flannel, and details resource management using YAML with imperative and declarative kubectl commands.

Cloud NativeCluster SetupDevOps
0 likes · 21 min read
Kubernetes (K8s) Complete Guide: From Architecture to Cluster Setup and Resource Management
Top Architect
Top Architect
Aug 15, 2022 · Cloud Native

Understanding Kubernetes Architecture and Its Core Components

This article provides a comprehensive overview of Kubernetes, explaining its master‑node architecture, key components such as API Server, Scheduler, Controller, kubelet and kube‑proxy, the lifecycle of a Deployment, Pod design, Service discovery, networking models, and external access methods.

DeploymentNetworkingService
0 likes · 9 min read
Understanding Kubernetes Architecture and Its Core Components
MaGe Linux Operations
MaGe Linux Operations
Aug 2, 2022 · Cloud Native

How Does Kubernetes Orchestrate Containers? A Deep Dive into Architecture and Workflows

This article provides a comprehensive overview of Kubernetes, covering its master‑node architecture, core components like API server, scheduler, controller, kubelet and kube‑proxy, the deployment creation process, pod fundamentals, service networking, and common patterns such as scaling, rolling updates, and ingress access.

Cloud NativeDeploymentKubernetes
0 likes · 11 min read
How Does Kubernetes Orchestrate Containers? A Deep Dive into Architecture and Workflows
MaGe Linux Operations
MaGe Linux Operations
Jul 30, 2022 · Cloud Native

How Does Kubernetes Really Handle Networking? A Deep Dive

This article explains the Kubernetes networking model, covering container‑to‑container, pod‑to‑pod, pod‑to‑service, and external traffic flows, and shows how Linux network namespaces, virtual Ethernet pairs, bridges, iptables, IPVS, LoadBalancers and Ingress controllers work together to route traffic inside and outside a cluster.

ContainersKubernetesNetworking
0 likes · 22 min read
How Does Kubernetes Really Handle Networking? A Deep Dive
MaGe Linux Operations
MaGe Linux Operations
Jul 25, 2022 · Cloud Native

Demystifying Kubernetes Service: Types, Usage, and Implementation

This article explains the fundamentals of Kubernetes Service, walks through a real‑world failure case, details how to configure different Service types (ClusterIP, NodePort, LoadBalancer, ExternalName, Headless), and explores the underlying implementation mechanisms such as user‑space proxy, iptables, and IPVS.

Cloud NativeKubernetesNetworking
0 likes · 12 min read
Demystifying Kubernetes Service: Types, Usage, and Implementation
Efficient Ops
Efficient Ops
Jun 30, 2022 · Cloud Native

Demystifying Kubernetes Networking: Services, IPs, and Ports Explained

This article breaks down Kubernetes' networking model by defining key concepts such as network namespaces, veth pairs, iptables, bridges, services, ClusterIP, NodePort, and illustrates intra‑ and inter‑node communication, as well as external access methods like NodePort and Ingress.

ClusterIPIngressKubernetes
0 likes · 16 min read
Demystifying Kubernetes Networking: Services, IPs, and Ports Explained
Open Source Linux
Open Source Linux
Jun 21, 2022 · Cloud Native

How Kubernetes Connects Pods, Services, and the Internet – A Deep Dive

This article explains Kubernetes' networking model, covering container‑to‑container, pod‑to‑pod (same‑node and cross‑node), pod‑to‑service, and external traffic handling via load balancers and Ingress, while detailing the underlying Linux namespaces, veth pairs, bridges, iptables, and IPVS mechanisms.

IngressKubernetesNetworking
0 likes · 23 min read
How Kubernetes Connects Pods, Services, and the Internet – A Deep Dive
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
Efficient Ops
Efficient Ops
May 8, 2022 · Cloud Native

How Do Kubernetes Pods and Services Achieve Load Balancing?

This article reviews the core structure of Kubernetes pods, explains how pods expose services externally, explores load‑balancing strategies using Services and virtual IPs, and details how kube‑proxy and selectors keep services in sync with changing pod lifecycles.

Cloud NativeKubernetesPod
0 likes · 7 min read
How Do Kubernetes Pods and Services Achieve Load Balancing?
MaGe Linux Operations
MaGe Linux Operations
May 1, 2022 · Cloud Native

Mastering Kubernetes Networking: From Containers to Services

This article explains Kubernetes' networking model, covering container‑to‑container, pod‑to‑pod, pod‑to‑service, and external traffic flows, detailing network namespaces, veth pairs, bridges, iptables/IPVS load balancing, and cloud‑provider integrations such as AWS VPC and Ingress controllers.

Cloud NativeKubernetesNetworking
0 likes · 25 min read
Mastering Kubernetes Networking: From Containers to Services
Efficient Ops
Efficient Ops
Mar 7, 2022 · Cloud Native

Demystifying Kubernetes Networking: Services, IPs, and Ports Explained

This article breaks down Kubernetes' networking model by defining key terms, explaining Service abstractions, IP and port concepts, detailing intra‑cluster communication, and outlining external access methods such as NodePort and Ingress, all supported by practical YAML and command examples.

CNIIngressKubernetes
0 likes · 15 min read
Demystifying Kubernetes Networking: Services, IPs, and Ports Explained
MaGe Linux Operations
MaGe Linux Operations
Feb 25, 2022 · Cloud Native

Mastering Kubernetes Services: Types, Usage, and Iptables Implementation

This article explains the fundamental concepts, configuration methods, and underlying mechanisms of Kubernetes Services, covering typical Service definitions, the four Service types, their behavior under kube-proxy's iptables mode, and practical troubleshooting insights drawn from a real production outage.

ClusterIPKubernetesService
0 likes · 12 min read
Mastering Kubernetes Services: Types, Usage, and Iptables Implementation
Architects Research Society
Architects Research Society
Feb 22, 2022 · Cloud Computing

Understanding the Kubernetes Networking Model

This article explains the fundamentals of Kubernetes networking, compares popular CNI implementations such as Flannel, Calico, and Weave Net, and details the key networking scenarios—including container‑to‑container, pod‑to‑pod, pod‑to‑service, and Internet‑to‑service—required for reliable and secure cluster operation.

CalicoFlannelNetworking
0 likes · 9 min read
Understanding the Kubernetes Networking Model
Practical DevOps Architecture
Practical DevOps Architecture
Jan 21, 2022 · Cloud Native

Grafana Deployment and Service YAML for Kubernetes

This article provides complete Kubernetes YAML manifests for deploying Grafana as a core Deployment and exposing it via a Service in the kube-system namespace, detailing container images, resource limits, environment variables, health probes, and persistent storage configuration.

Cloud NativeDeploymentDevOps
0 likes · 3 min read
Grafana Deployment and Service YAML for Kubernetes
IT Architects Alliance
IT Architects Alliance
Dec 10, 2021 · Cloud Native

Understanding the Kubernetes Networking Model: Services, IPs, and Ports

This article provides a comprehensive overview of Kubernetes networking, explaining key concepts such as network namespaces, veth pairs, iptables, services, ClusterIP, NodePort, Ingress, and the role of CNI plugins, while illustrating internal and external communication with practical YAML and kubectl examples.

CNIClusterIPIngress
0 likes · 16 min read
Understanding the Kubernetes Networking Model: Services, IPs, and Ports
Efficient Ops
Efficient Ops
Dec 8, 2021 · Cloud Native

Demystifying Kubernetes Networking: Services, IPs, and Ports Explained

This article breaks down Kubernetes' internal networking model, explaining key concepts such as network namespaces, veth pairs, iptables, services, ClusterIP, NodePort, and Ingress, and illustrates how pods communicate within a node, across nodes, and how external traffic reaches the cluster.

CNINetworkingNodePort
0 likes · 15 min read
Demystifying Kubernetes Networking: Services, IPs, and Ports Explained
IT Architects Alliance
IT Architects Alliance
Nov 27, 2021 · Cloud Native

Master Kubernetes Basics: Architecture, Probes, and Common Commands

This article provides a comprehensive interview‑style guide to Kubernetes, covering its purpose, master‑node and worker‑node components, detailed architecture, pod health‑checking probes, rolling‑update parameters, image pull policies, label selectors, Service concepts, and common kubectl commands for managing resources.

ContainersKubernetesLabels
0 likes · 24 min read
Master Kubernetes Basics: Architecture, Probes, and Common Commands
Architect
Architect
Nov 26, 2021 · Cloud Native

Kubernetes (K8s) Overview: Architecture, Components, Probes, Rolling Updates, Image Policies, and Persistent Storage

This article provides a comprehensive introduction to Kubernetes, covering its origin, master‑node and worker‑node architecture, pod health‑checking probes, rolling‑update controls, image pull policies, service concepts, external access, persistent storage options, label selectors, and common kubectl commands, all illustrated with practical YAML examples.

KubernetesPersistent VolumeProbes
0 likes · 20 min read
Kubernetes (K8s) Overview: Architecture, Components, Probes, Rolling Updates, Image Policies, and Persistent Storage
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
Programmer DD
Programmer DD
Nov 13, 2021 · Backend Development

Mastering Parameter Validation in Spring Boot: Hibernate Validator Best Practices

This article explains how to perform elegant parameter validation in Spring Boot by distinguishing controller‑level and service‑level checks, introduces Hibernate Validator annotations, demonstrates their usage with code examples, and shows additional utilities like commons‑lang3 and custom validation annotations for robust backend development.

Backend DevelopmentControllerHibernate Validator
0 likes · 6 min read
Mastering Parameter Validation in Spring Boot: Hibernate Validator Best Practices
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?
MaGe Linux Operations
MaGe Linux Operations
Sep 22, 2021 · Cloud Native

Mastering Kubernetes Services: Types, Configurations, and Iptables Implementation

This article recounts a real‑world Service outage, explains the purpose and principles of Kubernetes Services, details typical and selector‑less configurations, compares all Service types (ClusterIP, LoadBalancer, NodePort, ExternalName, Headless), and dives into the iptables‑based implementation used by kube‑proxy, complete with rule examples and performance considerations.

ClusterIPKubernetesService
0 likes · 11 min read
Mastering Kubernetes Services: Types, Configurations, and Iptables Implementation
Liangxu Linux
Liangxu Linux
Sep 7, 2021 · Cloud Native

Top 19 Kubernetes Service Issues and How to Fix Them

This guide compiles nineteen common Kubernetes problems—from certificate errors and service exposure failures to pod initialization issues and Helm installation errors—providing concise root‑cause analyses and step‑by‑step command solutions to help you quickly troubleshoot and resolve cluster disruptions.

ClusterKubernetesPod
0 likes · 11 min read
Top 19 Kubernetes Service Issues and How to Fix Them
Tencent Cloud Developer
Tencent Cloud Developer
Sep 6, 2021 · Cloud Native

From Docker to Kubernetes: A Comprehensive Guide to Containerization Technology

This guide introduces beginners to containerization by explaining Docker’s core components, Linux kernel mechanisms, and networking, then progresses to Kubernetes, detailing its architecture, key objects such as Pods, Deployments, Services, and storage concepts, and how they orchestrate distributed container workloads.

Cloud NativeDockerKubernetes
0 likes · 28 min read
From Docker to Kubernetes: A Comprehensive Guide to Containerization Technology
ITFLY8 Architecture Home
ITFLY8 Architecture Home
Aug 6, 2021 · Backend Development

Effective Application Layering: Controllers, Services, and DAOs Explained

This article examines the importance of clear application layering—controller, service, manager, and DAO—highlighting common pitfalls, Alibaba’s recommended architecture, and practical strategies for defining responsibilities, reducing code duplication, and improving maintainability across backend projects.

BackendLayered DesignService
0 likes · 9 min read
Effective Application Layering: Controllers, Services, and DAOs Explained
Programmer DD
Programmer DD
Jul 20, 2021 · Cloud Native

Mastering Kubernetes: Core Architecture, Probes, and Deployment Strategies

This article provides a comprehensive overview of Kubernetes, covering its purpose, architecture components, master and node roles, pod health probes, rolling update controls, image pull policies, service functions, label selectors, DaemonSet and Job resources, as well as pod lifecycle and data persistence options.

Cloud NativeContainersKubernetes
0 likes · 22 min read
Mastering Kubernetes: Core Architecture, Probes, and Deployment Strategies
Top Architect
Top Architect
Jun 17, 2021 · Cloud Native

Kubernetes Interview Questions and Answers: Architecture, Probes, Deployment, and Management

This article provides a comprehensive set of Kubernetes interview questions and detailed answers covering architecture components, pod lifecycle, health probes, rolling updates, image pull policies, services, label selectors, DaemonSets, Jobs, and persistent storage options, with example YAML snippets and command‑line usage.

KubernetesLabelPersistent Volume
0 likes · 23 min read
Kubernetes Interview Questions and Answers: Architecture, Probes, Deployment, and Management
Java Interview Crash Guide
Java Interview Crash Guide
May 24, 2021 · Cloud Native

Mastering Kubernetes: Core Concepts, Architecture, Probes, and Best Practices

This comprehensive guide explains what Kubernetes is, its architecture and components, pod health‑checking probes, rolling updates, image pull policies, restart strategies, services, label selectors, DaemonSet, Job, persistent volumes, and the full pod lifecycle, providing clear examples and command‑line snippets for each topic.

KubernetesPersistent VolumeProbes
0 likes · 23 min read
Mastering Kubernetes: Core Concepts, Architecture, Probes, and Best Practices
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
macrozheng
macrozheng
May 8, 2021 · Cloud Native

Mastering Kubernetes: From Pods to High Availability Explained

This article demystifies Kubernetes by explaining its core scheduling function, the role of Pods, YAML configuration, probes, high‑availability constructs like ReplicaSet and Deployment, internal components, resource limits, and practical cluster‑setup tools, providing a comprehensive guide for newcomers and practitioners alike.

Cloud NativeDeploymentDevOps
0 likes · 16 min read
Mastering Kubernetes: From Pods to High Availability Explained
Efficient Ops
Efficient Ops
Apr 28, 2021 · Cloud Native

Mastering Kubernetes: Understanding Pods, Probes, and Core Concepts

This article demystifies Kubernetes by explaining its scheduling fundamentals, the role of Pods, essential YAML configurations, health probes, high‑availability objects, service types, and core internal components, providing a comprehensive guide for developers and operators.

DeploymentKubernetesPod
0 likes · 10 min read
Mastering Kubernetes: Understanding Pods, Probes, and Core Concepts
IT Xianyu
IT Xianyu
Apr 21, 2021 · Backend Development

Java Parking System with User and Admin Management

This article presents a complete Java implementation of a parking system, detailing user and admin login, random parking slot allocation, time‑based fee calculation, and management functions, accompanied by full source code for entities, services, and client interaction.

BackendCLIEntity
0 likes · 14 min read
Java Parking System with User and Admin Management
Cloud Native Technology Community
Cloud Native Technology Community
Mar 11, 2021 · Cloud Native

How to Debug Kubernetes Deployments, Services, and Ingress Step‑by‑Step

This guide walks you through troubleshooting Kubernetes Deployments by explaining the relationships between Deployments, Services, and Ingress, showing a complete YAML example, detailing label and port matching rules, and providing concrete kubectl commands and debugging techniques for Pods, Services, and Ingress.

Cloud NativeDeploymentIngress
0 likes · 18 min read
How to Debug Kubernetes Deployments, Services, and Ingress Step‑by‑Step
Architecture Digest
Architecture Digest
Jan 14, 2021 · Cloud Native

Understanding Kubernetes Components Through an Aquarium Analogy

The article uses an aquarium metaphor to explain Kubernetes fundamentals—including Pods, Nodes, Scheduler, ReplicaSets, Services, Network Policies, and ConfigMaps—by comparing applications to fish, tanks to Pods, rooms to Nodes, and the control plane to the aquarium manager, making complex concepts easier to visualize.

Cloud NativeConfigMapContainers
0 likes · 7 min read
Understanding Kubernetes Components Through an Aquarium Analogy
Open Source Linux
Open Source Linux
Jan 7, 2021 · Cloud Native

Master Kubernetes Basics: From Pods to Deployments and kubectl

This comprehensive guide walks beginners through Kubernetes fundamentals, covering the architecture, core components such as Pods, Deployments, Services, Ingress, and Namespaces, and provides step‑by‑step instructions for configuring kubectl, deploying workloads, managing resources, and troubleshooting common issues.

KubernetesNamespaceService
0 likes · 36 min read
Master Kubernetes Basics: From Pods to Deployments and kubectl
MaGe Linux Operations
MaGe Linux Operations
Nov 18, 2020 · Cloud Native

How Kubernetes Orchestrates Containers: From Architecture to Service Discovery

This article provides a concise overview of Kubernetes, covering its master‑node architecture, core components such as API server, scheduler, controller, kubelet and kube-proxy, the lifecycle of Deployments and Pods, and explains service types, networking, and service discovery within a cloud‑native environment.

KubernetesMicroservicesNetworking
0 likes · 14 min read
How Kubernetes Orchestrates Containers: From Architecture to Service Discovery