Kubernetes sees infrastructure objects
Pods. Replicas. Nodes. Device assignments. Placement and health.
Kubernetes is excellent at managing infrastructure. But pods, replicas, and GPU assignments are too coarse to be the complete resource model for modern LLM inference.
It does not tell you how much useful inference capacity is available right now.
Pods. Replicas. Nodes. Device assignments. Placement and health.
Model residency. KV cache. Memory pressure. Compute and bandwidth. Request mix and cache locality.
The problem is not Kubernetes. The problem is asking Kubernetes objects to describe live inference state they were never designed to own.
A new worker can require scheduling, model loading, engine initialization, and warming before it is useful.
A router can choose among existing endpoints. It cannot by itself reshape the memory, compute, or state inside them.
Replacing a worker can lose valuable local cache and model residency, forcing reload or recomputation.
Understand model state, cache state, resource pressure, and the shape of incoming work.
The best destination depends on more than endpoint health. It depends on the state and capacity behind that endpoint.
Inference capacity changes after startup. The control layer must keep responding as traffic and state change.
That control layer can run on Kubernetes. It just cannot be reduced to Kubernetes alone.
Put durable runtime infrastructure on the right machines and failure domains.
Provide the enterprise infrastructure controls teams already know how to operate.
Handle rollout, restart, cluster operations, and coarse failure recovery.
Assign accelerators and infrastructure resources to the runtime layer that will use them.
Kubernetes should remain the infrastructure manager. A specialized inference layer should manage the live models, state, routing, and resource economics inside and across those allocations.
servescale.ai is building around this division of responsibility: Kubernetes manages infrastructure; the inference layer manages models, state, routing, resource pressure, and economics.
The result is a cleaner operating model: keep the infrastructure platform enterprises already trust, and add the inference-specific control that modern model serving requires.