Ephemeral Storage Limits

Ephemeral storage requests prevent disk-full from one pod.

Set

Ephemeral storage is the disk space pods can use for temporary files, logs, and emptyDir volumes. Without limits, a single misbehaving pod can fill the node's disk; the entire node becomes unhealthy. Setting limits prevents the cascade; the discipline is bounding ephemeral storage explicitly.

What setting limits looks like:

Setting the limits is the foundation. Without explicit limits, the workload has unbounded blast radius.

Eviction

When a pod exceeds its ephemeral-storage limit, Kubernetes evicts it. The eviction is the enforcement; without it, the limit is advisory.

Eviction is the enforcement mechanism. Without it, the limit produces no behavior change; with it, the limit is real.

Review

The limits should match actual usage. Periodic review keeps the limits aligned with reality; over-tight limits cause unnecessary evictions; over-loose limits do not protect.

Ephemeral storage management is one of those Kubernetes operational disciplines that prevents a class of node-level incidents. Nova AI Ops integrates with cluster telemetry, surfaces ephemeral storage usage and eviction patterns, and produces the per-pod tuning queue that the platform team uses.