Hitesh Sahu
Hitesh SahuHitesh Sahu
  1. Home
  2. β€Ί
  3. posts
  4. β€Ί
  5. …

  6. β€Ί
  7. 0 INDEX

Loading ⏳
Fetching content, this won’t take long…


πŸ’‘ Did you know?

πŸ™ Octopuses have three hearts and blue blood.

πŸͺ This website uses cookies

No personal data is stored on our servers however third party tools Google Analytics cookies to measure traffic and improve your website experience. Learn more

Loading ⏳
Fetching content, this won’t take long…


πŸ’‘ Did you know?

🍯 Honey never spoils β€” archaeologists found 3,000-year-old jars still edible.
kubernetes

    AI-AgenticAI

    AI-DeepLearning

    AI-GenAI

    AI-Infrastructure

    AI-Machine-Learning

    AI-Math

    AWS

    Azure

    kubernetes
    • Kubernetes: Control Loops, Scheduling, and GPUs


    • Image Internals: From OCI Layers to a Running Container


    • Container Internals: What a Container Really Is


    • Kubernetes Pod Internals: What a Pod Really Is


    • Kubernetes API Server Internals


    • Kubernetes Resource Allocation: Requests, Limits, QoS, and Quotas


    • etcd Architecture Explained


    • Kubernetes Scheduler Internals


    • Kubelet Internals: The Node Agent That Runs Everything


    • Kubernetes Informers & Controllers Explained


    • Kubernetes Networking: Pods, Services, Ingress, and CNI


    • Kubernetes Storage: PV, PVC, StorageClass, and CSI


    • Helm: Kubernetes Package Manager


    • Cloud Native Observability: Prometheus, Grafana, OpenTelemetry, and Tracing


    • GPU Scheduling in Kubernetes: Device Plugins, GPU Operator & MIG


    • NVIDIA Network Operator: InfiniBand, SR-IOV, RDMA, and Multus


    • Dynamic Resource Allocation: The Future of GPU Scheduling in Kubernetes


    • Kubernetes Performance at Scale


    • Optimizing AI Inference at Scale: The Full Stack


    • Kueue: Kubernetes-Native Job Queuing and Quota Management


    • Multi-Node Distributed Training on Kubernetes


    • Kubernetes Topology Manager: NUMA-Aware GPU Scheduling


    • NVIDIA NIM: Optimized Inference Microservices on Kubernetes


    • GPU Autoscaling on Kubernetes: KEDA, HPA, and Cluster Autoscaler


    • Fine-Tuning LLMs: LoRA, QLoRA, PEFT, and NeMo on Kubernetes


    • Flash Attention: Fast, Memory-Efficient Attention for LLMs


    • Kubernetes and Cloud Native Certification Path


    • KCNA Mock Exam β€” Set 1


    • KCNA Mock Exam β€” Set 2


    • KCSA Mock Exam β€” Set 1


    • KCSA Mock Exam β€” Set 2


    • kubernetes Index


    Management

    Programming

    Terraform

    Z_Appendix

Cover Image for kubernetes Index
kubernetes

kubernetes Index

πŸ“™ Index of kubernetes posts

πŸ“™ kubernetes Index

πŸ“š 32 Posts
πŸ•’ Last Updated: Mon Aug 17 2026

This folder contains kubernetes-related posts.

#Blog LinkDateExcerptTags
1kubernetes IndexMon Aug 17 2026πŸ“™ Index of kubernetes posts
2Kubernetes: Control Loops, Scheduling, and GPUsFri Feb 20 2026A working engineer's map of Kubernetes β€” the reconciliation model underneath the objects, the scheduling and networking internals that bite at scale, and how GPU workloads actually get placed and run.Kubernetes DevOps Cloud Containers Orchestration GPU Scheduling MLOps
3Image Internals: From OCI Layers to a Running ContainerFri Jul 24 2026The complete journey of a container image β€” OCI manifest, content-addressable layers, registry pull flow, containerd snapshots, OverlayFS rootfs assembly, pod sandbox creation, and how a container process finally starts inside a pod.Kubernetes Containers OCI Docker containerd OverlayFS Container Runtime Image Registry DevOps
4Container Internals: What a Container Really IsWed Jul 22 2026What a container actually is from the OS and Kubernetes perspectives β€” Linux namespaces, cgroups, OverlayFS image layers, the OCI spec, the container runtime stack from CRI to runc, and container security primitives.Kubernetes Containers Linux Docker OCI OverlayFS Container Runtime Security DevOps
5Kubernetes Pod Internals: What a Pod Really IsWed Jul 22 2026What a Kubernetes pod actually is from the OS and Kubernetes perspectives β€” Linux namespaces, cgroups, the pause container, shared networking, pod lifecycle, init containers, and what happens between kubectl apply and your process running.Kubernetes Pod Linux Namespaces cgroups Container Runtime DevOps Cloud
6Kubernetes API Server InternalsTue Jul 07 2026Deep dive into the Kubernetes API Server β€” authentication, authorization, RBAC, admission controllers, schema validation, the watch cache, optimistic concurrency, and API Priority & Fairness explained with diagrams.Kubernetes API Server Control Plane Security RBAC DevOps Cloud
7etcd Architecture ExplainedTue Jul 07 2026etcd internals for Kubernetes engineers β€” Raft consensus, leader election, MVCC and resourceVersion, snapshots, log compaction, the watch API, quorum loss behavior, and etcdctl operations for backup and defrag.Kubernetes etcd Raft Control Plane Distributed Systems Storage DevOps
8Kubernetes Scheduler InternalsTue Jul 07 2026Inside the Kubernetes Scheduler β€” scheduling queue, filtering, scoring, preemption, binding, topology spread constraints, the scheduler plugin framework, and where Kueue fits for batch and AI workloads.Kubernetes Scheduler Pod Scheduling Control Plane Kueue DevOps Cloud
9Kubelet Internals: The Node Agent That Runs EverythingWed Jul 29 2026What the kubelet actually does on every node β€” the sync loop and pod sources, the Container Runtime Interface, the Pod Lifecycle Event Generator, node heartbeats and leases, static pods, cgroup enforcement, the eviction manager, probe execution, and the Device Manager that hands out GPUs.Kubernetes Kubelet Node Agent CRI Control Plane DevOps Cloud
10Kubernetes Informers & Controllers ExplainedTue Jul 07 2026How Kubernetes controllers and informers work β€” reconciliation loops, shared informers, local caches, work queues with exponential backoff, owner references, generation tracking, finalizers, and the operator pattern.Kubernetes Controllers Informers Reconciliation Control Plane DevOps Cloud
11Kubernetes Networking: Pods, Services, Ingress, and CNITue Jul 07 2026How Kubernetes networking works from the ground up β€” the flat Pod network model, CNI plugins, kube-proxy and iptables, Services (ClusterIP, NodePort, LoadBalancer, Headless), CoreDNS service discovery, Ingress, NetworkPolicies, and why overlay networks are replaced by InfiniBand for GPU training.Kubernetes Networking CNI Services Ingress CoreDNS NetworkPolicy DevOps Cloud KCNA
12Kubernetes Storage: PV, PVC, StorageClass, and CSITue Jul 07 2026How Kubernetes persistent storage works β€” Volumes vs PersistentVolumes, PersistentVolumeClaims, StorageClass dynamic provisioning, access modes, reclaim policies, the CSI driver model, StatefulSet stable storage, and storage requirements for GPU training checkpoints.Kubernetes Storage PersistentVolume StorageClass CSI StatefulSet DevOps Cloud KCNA
13Helm: Kubernetes Package ManagerTue Jul 07 2026Helm from the ground up β€” charts, releases, repositories, values, and Go templates. Essential commands, values overrides, chart structure, Helm hooks, Helm vs Kustomize, and real examples using GPU Operator, NIM, and Kueue.Kubernetes Helm DevOps Cloud Package Manager GitOps GPU Operator KCNA
14Cloud Native Observability: Prometheus, Grafana, OpenTelemetry, and TracingTue Jul 07 2026The three pillars of observability on Kubernetes β€” metrics with Prometheus and PromQL, visualization with Grafana, structured logging with Loki and Fluent Bit, distributed tracing with OpenTelemetry and Tempo, the OTel Collector pipeline, and GPU-specific observability with DCGM on DGX clusters.Kubernetes Observability Prometheus Grafana OpenTelemetry Tracing Loki Logging DCGM DevOps Cloud KCNA
15Kubernetes Resource Allocation: Requests, Limits, QoS, and QuotasWed Jul 22 2026How Kubernetes allocates CPU and memory β€” requests vs limits, QoS classes, ResourceQuota, LimitRange, node allocatable capacity, GPU resources, and best practices for production workloads.Kubernetes Resource Management QoS ResourceQuota LimitRange GPU DevOps Cloud
16GPU Scheduling in Kubernetes: Device Plugins, GPU Operator & MIGTue Jul 07 2026How Kubernetes schedules GPUs β€” Device Plugin gRPC protocol, nvidia-container-toolkit, GPU Operator ClusterPolicy, MIG profiles on H100, time-slicing, DCGM monitoring, GPU health tainting, and GPU sharing strategies for AI workloads.Kubernetes GPU NVIDIA MIG GPU Operator AI MLOps DevOps Cloud
17NVIDIA Network Operator: InfiniBand, SR-IOV, RDMA, and MultusTue Jul 07 2026Why a DGX cluster trains 10Γ— faster than a regular GPU cluster β€” the full network stack explained: RDMA, GPUDirect RDMA, InfiniBand, SR-IOV, Multus CNI, and how the NVIDIA Network Operator automates all of it on Kubernetes.Kubernetes InfiniBand RDMA SR-IOV Multus NVIDIA Network Operator DGX Distributed Training MLOps DevOps
18Dynamic Resource Allocation: The Future of GPU Scheduling in KubernetesTue Jul 07 2026How Kubernetes DRA replaces Device Plugins for GPU scheduling β€” ResourceClaim, DeviceClass, ResourceSlice, CEL selectors, topology-aware allocation, the NVIDIA GPU DRA driver, and how DRA and Device Plugins coexist during migration.Kubernetes DRA GPU NVIDIA Scheduling DGX AI MLOps DevOps
19Kubernetes Performance at ScaleTue Jul 07 2026Kubernetes at hyperscale β€” official SLIs and SLOs, pod startup latency breakdown, watch storms, LIST scalability, API Priority & Fairness, etcd bottlenecks, scheduler throughput, horizontal API Server scaling, and benchmarking with ClusterLoader2 and KWOK.Kubernetes Performance Scalability APF etcd Control Plane KWOK ClusterLoader2 DevOps
20Optimizing AI Inference at Scale: The Full StackTue Jul 21 2026There is no single technique to keep GPUs busy. A layer-by-layer map of AI inference optimization β€” from quantization and inference engines through KV cache, continuous batching, GPU sharing, scheduling, and cache-aware routing up to parallelism, autoscaling, and the networking underneath.AI Infrastructure GPU Inference LLM Kubernetes MLOps vLLM Quantization Scheduling Autoscaling
21Kueue: Kubernetes-Native Job Queuing and Quota ManagementTue Jul 07 2026Deep dive into Kueue β€” the CNCF project that adds job queuing, resource quotas, gang scheduling, preemption, and fair sharing to Kubernetes. Covers ResourceFlavors, ClusterQueues, LocalQueues, Cohorts, and integration with PyTorchJob and batch workloads.Kubernetes Kueue Job Scheduling GPU MLOps Batch DGX AI DevOps
22Multi-Node Distributed Training on KubernetesTue Jul 07 2026How Kubernetes orchestrates distributed AI training across multiple DGX nodes β€” Kubeflow Training Operator, PyTorchJob, gang scheduling, NCCL, AllReduce, intra-node NVLink vs inter-node InfiniBand, and fault-tolerant checkpointing.Kubernetes Distributed Training DGX PyTorch Kubeflow NCCL InfiniBand GPU AI MLOps
23Kubernetes Topology Manager: NUMA-Aware GPU SchedulingTue Jul 07 2026How the kubelet Topology Manager co-locates GPUs, CPUs, memory, and NICs on the same NUMA node β€” the difference between 1 ΞΌs and 100 ns RDMA latency on DGX. Covers NUMA basics, CPU Manager, Memory Manager, hint collection, and the four Topology Manager policies.Kubernetes Topology Manager NUMA GPU DGX Performance CPU Manager InfiniBand RDMA MLOps DevOps
24NVIDIA NIM: Optimized Inference Microservices on KubernetesTue Jul 07 2026What NVIDIA NIM is and how it works β€” NIM profiles, NGC model cache, the NIM Operator, NIMService CRD, OpenAI-compatible API, GPU-aware deployment on Kubernetes, and how NIM compares to raw Triton and vLLM for production inference on DGX Cloud.Kubernetes NIM NVIDIA Inference LLM DGX AI MLOps TensorRT-LLM Triton
25GPU Autoscaling on Kubernetes: KEDA, HPA, and Cluster AutoscalerTue Jul 07 2026How to autoscale GPU workloads on Kubernetes β€” DCGM metrics pipeline to HPA, KEDA ScaledObjects with Prometheus triggers, Cluster Autoscaler for GPU node groups, scale-down protection for training jobs, and KEDA + Kueue integration for queue-depth-driven scaling.Kubernetes Autoscaling GPU KEDA HPA Cluster Autoscaler DCGM NVIDIA DGX AI MLOps DevOps
26Fine-Tuning LLMs: LoRA, QLoRA, PEFT, and NeMo on KubernetesTue Jul 21 2026Why fine-tuning exists, the memory math that makes full fine-tuning prohibitive, LoRA's low-rank decomposition trick, QLoRA on quantized base models, instruction tuning vs RLHF vs DPO, and how to run fine-tuning jobs on a DGX Kubernetes cluster with NeMo and PyTorchJob.Kubernetes LoRA PEFT Fine-Tuning NeMo LLM NVIDIA DGX AI MLOps
27Flash Attention: Fast, Memory-Efficient Attention for LLMsTue Jul 21 2026How standard self-attention creates an O(NΒ²) memory bottleneck, the IO-aware tiling algorithm that Flash Attention uses to stay in SRAM, Flash Attention 2 and 3 improvements, Grouped Query Attention and its KV cache impact, PagedAttention, and how these optimizations flow through TensorRT-LLM and NIM on H100.Attention LLM NVIDIA CUDA TensorRT FlashAttention Inference AI Performance
28Kubernetes and Cloud Native Certification PathTue Feb 24 2026Foundational concepts of Kubernetes and the cloud native ecosystem, covering container orchestration, architecture, observability, and core Kubernetes components.Kubernetes Cloud Native KCNA CNCF Containers DevOps Certification
29KCNA Mock Exam β€” Set 1Wed Jul 29 2026A 60-question practice exam for the Kubernetes and Cloud Native Associate (KCNA) certification, weighted to the official exam domains β€” Kubernetes Fundamentals, Container Orchestration, Cloud Native Application Delivery, and Cloud Native Architecture.Kubernetes KCNA CNCF Certification Mock Exam Cloud Native DevOps
30KCNA Mock Exam β€” Set 2Wed Jul 29 2026A second 60-question practice exam for the Kubernetes and Cloud Native Associate (KCNA) certification, covering the same official exam domains with a fresh question set for additional practice.Kubernetes KCNA CNCF Certification Mock Exam Cloud Native DevOps
31KCSA Mock Exam β€” Set 1Wed Jul 29 2026A 60-question practice exam for the Kubernetes and Cloud Native Security Associate (KCSA) certification, covering the 4Cs security model, cluster component security, Kubernetes threat modeling, platform security, and compliance frameworks.Kubernetes KCSA CNCF Security Certification Mock Exam Cloud Native DevOps
32KCSA Mock Exam β€” Set 2Wed Jul 29 2026A second 60-question practice exam for the Kubernetes and Cloud Native Security Associate (KCSA) certification, covering the same official security domains with a fresh question set for additional practice.Kubernetes KCSA CNCF Security Certification Mock Exam Cloud Native DevOps
Hitesh Sahu
Written by Hitesh Sahu, a passionate developer and blogger.

Mon Aug 17 2026

Share This on

kubernetes/0-INDEX
Let's work together
hiteshkrsahu@gmail.com
Munich πŸ₯¨, Germany πŸ‡©πŸ‡ͺ, EU
Playstore
Hitesh Sahu's apps on Google Play Store
Need Help?
Let's Connect
Navigation
Β  Home/About
Β  Skills
Β  Work/Projects
Β  Lab/Experiments
Β  Contribution
Β  Awards
Β  Art/Sketches
Β  Thoughts
Β  Contact
Links
Β  Sitemap
Β  Legal Notice
Β  Privacy Policy

Made with

NextJS logo

NextJS by

hitesh Sahu

| Β© 2026 All rights reserved.