sethserver.com Subscribe
A cartoon robot with a white TV-screen face displaying a smile stands against a cyan background, holding colorful geometric blocks and database cylinders in its purple, orange, and cyan arms. The robot has antennae on its head and is surrounded by floating clouds, cubes, circles, and geometric shapes in purple, orange, and other bright colors.

Kubernetes: What is it, When to use it, and why?

By Seth Black • Updated: June 29, 2026

Programming · 4 min read

Like this kind of writing? Get one email a week with notes on startups, AI, and the occasional strong opinion about Python: subscribe to the newsletter.

Kubernetes feels like one of those tools people prescribe like it's a vitamin. "You should really be taking K8s." Cool. For what problem? If you don't actually have that problem, Kubernetes will hand you a pile of new ones on top of your old ones.

I like Kubernetes. I also like chainsaws. Same deal: use it for trees, not bagels.


What Kubernetes actually is

Kubernetes is a container scheduler. You give it containers and machines (nodes), and it figures out where things run. Then it keeps doing that job while the world is on fire.

Day‑to‑day, that looks like:

If you've only ever run a couple containers on a single VM, Kubernetes can feel like showing up to a lemonade stand with a forklift.


The stack of abstractions

Kubernetes runs containers, but it wraps them in a pile of objects first. These are the ones you'll trip over early:

Each abstraction solves a real problem. The cost is that debugging now means asking: "Is this a code problem, a container problem, a networking problem, or a YAML problem?"

Spoiler: it's usually YAML.


When Kubernetes makes sense

Kubernetes earns its keep when you have real operational complexity:

I've done consulting where my job was "make the software work" while the company was busy setting money on fire in creative ways. In that kind of chaos, Kubernetes can be a relief. Deploys are repeatable, rollouts are predictable, and a bad change has a fence around its blast radius.


When Kubernetes is overkill

If you have:

…then Kubernetes is too much.

You'll spend time learning cluster networking, ingress behavior, storage classes, RBAC, and why your pods are stuck in CrashLoopBackOff because your health check is wrong by one character. Meanwhile, your users just want the login page to load.

For small setups, you can get most of the benefits with managed platforms:

Boring infrastructure is underrated. Boring ships products. Interesting ships incident reports.


AI makes Kubernetes easier and riskier

Yes, AI can write Kubernetes manifests. The dangerous part is speed. AI can spit out a full Deployment, Service, Ingress rules, and a Helm chart in two minutes. It can also produce a production outage in two minutes. Same speed, different outcome.

If you run Kubernetes in production, you still need to understand a few non‑negotiables.

Probes (how you lie to yourself)

Mix these up and you'll roll out an app that looks "healthy" while it's returning 500s, or "dead" while it's serving traffic perfectly. Kubernetes will be very confident either way.

Resource limits (how you get mystery failures)

If you don't set CPU and memory requests and limits, the scheduler guesses. Guessing is fun until your node is full and the kernel starts killing processes like it's playing whack‑a‑mole.

Failure modes (how you debug when shit hits the fan)

You should be comfortable with:

kubectl get pods
kubectl describe pod <name>
kubectl logs <name> --previous
kubectl get events --sort-by=.metadata.creationTimestamp

If those commands feel like magic incantations, you're not ready. I've watched people deploy to Kubernetes without knowing kubectl logs existed. Like driving a car without knowing where the brake pedal is. Works fine until it doesn't, and when it doesn't, it's spectacular.


Quick gut‑check table

Situation Probably don't need K8s Probably do need K8s
Single small SaaS
Occasional side projects
Dozens of microservices
Heavy multi‑team infra

The honest takeaway

Kubernetes is great if you're running a small city of services. If you're running a food truck, it's a weird choice.

Use it because you need to wrangle lots of services without losing your mind. Not because it's trendy. Kubernetes is useful, but it's not a personality trait.

-Sethers

Share this post
Newsletter

One email, once a week.

Notes on databases, systems, and the occasional strong opinion about Python. No spam, unsubscribe anytime.

Seth Black
Written by

Seth Black

Engineer and founder based in Texas. Writes about databases, AI, and running things in production. Embeds in small teams as lead engineer.

More from Programming

View all →
Programming

What's the Differences Between Relational, NoSQL, Vectors, and Caches

Apr 14, 2026
Programming

Git and Source Control in AI Land

Apr 14, 2026
Programming

Domains, DNS, and why it feels fragile

Apr 14, 2026