Interactive schematics of the whole stack, from kernel to pager to the GPU: twelve sheets, one reconciliation loop, everywhere. Pick a scenario and follow the orange signal through every internal component that touches it.
Sheet00 / Linux
Scaleinternals : 1
Drawn byPrabin Lama
Checked byTech Internals
Sheet 00, Linux. The prequel: every sheet above compiles down to this one. Containers, images, resource limits, network policies. All of it is a handful of kernel primitives worn as a costume. Trace fork & exec (what running ls actually does), then build a container by hand with namespaces, cap what it uses with cgroups, fake its filesystem with overlayfs & pivot_root, disarm it with capabilities · seccomp · LSM, and finish with eBPF, programs running inside the kernel itself. Keys: ←→ step · space play.
Fig. 0, user space · syscall boundary · kernel · hardwareclick any component for its role
Sheet 01, Docker. How a single command becomes a running, isolated Linux process. Trace docker run through the full chain (CLI → dockerd → containerd → shim → runc → kernel), then go deeper: image builds with BuildKit and layer caching, volumes and copy-on-write, networking with veth pairs and embedded DNS, security from the default sandbox to the never-do list, and compose. Keys: ←→ step · space play.
Fig. 1, docker engine on a linux hostclick any component for its role
Sheet 02, Kubernetes. How declarative YAML becomes running workloads. Trace every major resource type through the control plane, Deployment, StatefulSet, DaemonSet, Job/CronJob, Service, Ingress, Gateway API, PV/PVC storage, NetworkPolicy, HPA, ConfigMap, security, plus the Web request trace: the full journey of a page load from browser → cloud LB → gateway → service → your pod. Keys: ←→ step · space play.
Fig. 2, control plane · worker node · traffic pathclick any component for its role
Sheet 03, GitOps. Where the YAML in Sheet 02 actually comes from. Nobody runs kubectl in production: a controller (ArgoCD) living inside the cluster pulls desired state from git and reconciles the cluster toward it. The same watch → diff → act loop Kubernetes uses internally, applied to deployment itself. Trace git push → sync end to end, then drift & self-heal (what happens to a 2am kubectl edit), rollback via git revert, sync waves & hooks for ordered releases with DB migrations, and ApplicationSet fleet stamping. Keys: ←→ step · space play.
Fig. 3, git → argocd → clusterclick any component for its role
Sheet 04, Terraform / IaC. The layer everything above runs on. One binary, but three moving parts most people never see: providers are separate processes speaking gRPC, resources form a dependency graph walked in parallel, and state is the binding between your config and real cloud IDs. Trace terraform apply end to end (watch the DAG light up in dependency order), then destroy (the graph reversed), drift & import, state surgery, and Terraform in CI, GitOps for infrastructure, closing the loop with Sheet 03. Keys: ←→ step · space play.
Fig. 4, core · providers · state · cloudclick any component for its role
Sheet 05, Observability. You built it (04), deployed it (03), orchestrated it (02). Now prove it works, and find out at 3am when it doesn't. Trace a metric's journey from a counter in your code through scrape loop, WAL and TSDB to a Grafana panel; follow the alert path through pending → firing → Alertmanager grouping → the on-call phone; turn reliability into a currency with SLOs & burn rates; add logs & traces, the other two pillars; and finish with HA & meta-monitoring, who watches the watchmen. Keys: ←→ step · space play.
Fig. 5, scrape · store · query · pageclick any component for its role
Sheet 06, Git. The database everything since Sheet 03 trusts as its source of truth, so it deserves its own schematic. Git is a content-addressed object store with a thin porcelain of commands on top. Trace the anatomy of a commit (blobs, trees, refs, HEAD), branch & merge mechanics, what push & fetch actually transfer, time travel & recovery via the reflog, and rewriting history. When new hashes are fine and when they're a team incident. Keys: ←→ step · space play.
Fig. 6, working dir · .git · remoteclick any component for its role
Sheet 07, CI/CD. The machinery between Sheet 06's push and Sheet 03's sync. Trace a pipeline run from webhook to green check, why caching makes or breaks build times, the two models of CD (push-deploy vs handing off to GitOps), supply-chain security from OIDC to signed provenance, and the unglamorous craft of reliable pipelines, flaky tests, merge queues, hermetic runners. Keys: ←→ step · space play.
Fig. 7, forge · engine · runner · registry · prodclick any component for its role
Sheet 08, DNS. The system every outage postmortem suspects first, usually correctly. Trace a full resolution from getaddrinfo() through /etc/hosts, systemd-resolved and a recursive resolver iterating root → TLD → authoritative; then the Kubernetes DNS path with its infamous ndots:5; a working tour of records & TTLs; a debugging field guide (SERVFAIL vs NXDOMAIN vs the 5-second k8s timeout); and DNS as infrastructure, failover, geo-routing, and its limits as a load balancer. Keys: ←→ step · space play.
Fig. 8, stub · recursive · root · tld · authoritativeclick any component for its role
Sheet 09, TLS & PKI. The padlock, taken apart. Trace the TLS 1.3 handshake (SNI, key shares, why forward secrecy matters), the chain of trust from leaf to root and its classic failure modes, ACME issuance as a cert-manager controller loop (Sheet 02's pattern, again), mTLS & service identity (including the fact that every kubectl call you've ever made was mutual TLS) and the failure museum: expiry, clock skew, and why revocation never really worked. Keys: ←→ step · space play.
Fig. 9, client · server · ca · cert-managerclick any component for its role
Sheet 10, Secrets (Vault). Sheet 02 warned you: Secrets in etcd are base64, not protection. Vault is the systemic answer. Trace the seal & barrier (why stolen storage is useless), the killer feature. dynamic database credentials that didn't exist before the request and are dropped after the lease; the auth & policy model where everything is a path; transit & PKI engines (encryption-as-a-service, Vault as your internal CA for Sheet 09's mTLS); and the Kubernetes integration patterns with their honest trade-offs. Keys: ←→ step · space play.
Fig. 10, auth · policy · engines · barrier · storageclick any component for its role
Sheet 11, AI / LLM Serving. The newest workload wearing all ten previous sheets' patterns, plus one genuinely new bottleneck. Trace the anatomy of an inference request (prefill vs decode, continuous batching, the KV cache); model rollout & canary. Sheet 03/07's playbook applied to checkpoints instead of containers; GPU autoscaling economics. The one workload where request-based autoscaling actually is the right call; a RAG pipeline (embed, retrieve, ground); and LLM observability & cost, new SLIs for a workload billed by the token. Keys: ←→ step · space play.
Fig. 11, gateway · scheduler · gpu pool · retrievalclick any component for its role