Kubernetes Architecture, Up Close: Loops...
DevOpsArchitecture

Kubernetes Architecture, Up Close: Loops, Watches and the API Server

Going deeper than the familiar control plane / node diagram: where the control loop runs, how list-watch lets components coordinate without knowing each other, why everything goes through the api-server, and which stages a kubectl apply command passes through before the container runs.

K
KaiMay 24, 2026· 57 views
Why Build Kubernetes by Hand, and What W...
DevOpsArchitecture

Why Build Kubernetes by Hand, and What We're Going to Build

Series opener: 'from scratch' means creating every certificate by hand, bootstrapping every binary, wiring pod networking yourself — no kubeadm, no scripts. Why this long road makes Kubernetes click faster, how we'll stand up an HA cluster, then use it as a lab to deep-dive every Kubernetes concept.

K
KaiMay 24, 2026· 108 views
Capstone: Deploy a Complete Application ...
DevOpsKubernetes

Capstone: Deploy a Complete Application and Wrap Up the Series

Tying it all together: a multi-component application (a multi-replica frontend + a database with storage) deployed onto minikube end to end, using Deployment, Service, ConfigMap/Secret, PVC, Ingress, probes and resources. Then clean up the cluster, wrap up the journey and suggest where to go next.

K
KaiMay 23, 2026· 28 views
Observe and Debug: logs, exec, describe,...
DevOpsTroubleshooting

Observe and Debug: logs, exec, describe, events

When a pod won't run, you need to know where to look. This article drills the everyday debugging skillset through two real failures — ImagePullBackOff and CrashLoopBackOff: read describe/events to learn why, logs to see what the app says, exec to inspect inside, and the dashboard for the big picture.

K
KaiMay 23, 2026· 29 views
Workload Types: StatefulSet, DaemonSet, ...
DevOpsKubernetes

Workload Types: StatefulSet, DaemonSet, Job and CronJob

Deployment fits stateless apps, but not everything is stateless. StatefulSet is for apps that need a stable identity (databases), DaemonSet for things that must run on every node (log agents), Job/CronJob for run-then-done tasks. This article runs each type for real and shows when to use which.

K
KaiMay 23, 2026· 48 views
Resource Requests/Limits and Autoscaling...
DevOpsAutoscaling

Resource Requests/Limits and Autoscaling (HPA)

Every pod has to state how much CPU/RAM it wants — that's how the scheduler places pods correctly and the cluster doesn't fall over because one pod hogs everything. Once declared, the HorizontalPodAutoscaler raises and lowers replica count with load. This article generates real load and watches HPA scale from 1 up to many pods.

K
KaiMay 23, 2026· 32 views
Health Checks: Liveness and Readiness Pr...
DevOpsKubernetes

Health Checks: Liveness and Readiness Probes

How does Kubernetes know a 'Running' pod is actually healthy and ready to take traffic? Through probes. A liveness probe restarts a hung container; a readiness probe keeps traffic away from a pod that isn't ready. This article demos both with deliberately broken pods and watches K8s react.

K
KaiMay 23, 2026· 36 views