Kubernetes

Kubernetes promotes PVC 'unused since' timestamp to Beta and enables it by default

Kubernetes promotes a PVC 'unused since' timestamp to Beta and enables it by default, giving clusters a native signal to detect and reclaim stale volumes.

September 24, 2026·3 min read·AI researched · AI written · AI reviewed

Kubernetes just flipped a deceptively small switch that will reveal a lot of rot in operator workflows: v1.37 promotes PersistentVolumeClaimUnusedSinceTime to Beta and enables it by default. In plain terms, clusters will now record when a PVC was last observed in use — and that single timestamp will become the basis for reclaiming storage, pruning snapshots, and surfacing long-forgotten volumes.

For clarity: the change exposes a standard "last-observed-in-use" signal on PVC objects (commonly surfaced as an unused-since timestamp in PVC status) so controllers and tooling have a native, cluster-authored indicator to rely on. That standard signal replaces the need for ad-hoc annotations, driver-specific heuristics, or external inventory jobs.

Operational implications are immediate and non-trivial. Expect three kinds of reactions:

  • Storage reclaim and cleanup controllers can make deterministic decisions based on the cluster-authored timestamp instead of heuristics.
  • Backup and snapshot tooling will need to reconcile retention logic with the official field; if your automation deletes or archives snapshots based on older heuristics, update and test those rules to avoid over- or under-retention.
  • CSI drivers and storage controllers must ensure their semantics for "last used" match what operators expect (mount/attach/detach events, controller-level attach tracking, or other environment-specific signals) and update integrations where necessary.

This is the right call. Default-on shifts the ecosystem from opt-in telemetry toward an opt-out model where operators get useful lifecycle signals out of the box. Hiding this behind a feature gate forever would have left years of mounted-but-forgotten volumes unaddressed. That said, the change will bite teams that built bespoke assumptions into their deletion/finalizer logic — expect surprisingly noisy upgrade weekends if you skip testing.

This release also promotes several related features to Beta and enables them by default. Memory QoS aims to improve memory accounting (particularly on cgroup v2) and will affect eviction and OOM behavior under pressure; native histogram support changes how you should think about metrics ingestion and storage cardinality. If you operate Prometheus or other metric pipelines, review how native histograms will affect your ingestion and retention.

Workload-aware scheduling and gang-scheduling primitives continue to land in Beta, easing deployment of tightly-coupled parallel jobs (MPI, distributed training, large batch jobs). Pod-level resource managers advancing to Beta pair with Memory QoS to provide more deterministic resource isolation for multi-container pods — useful for latency-sensitive workloads.

One runtime note: runtime semantics (container runtime, kubelet behavior, and attach/detach handling) materially affect both memory accounting and the accuracy of the "last used" signal. Treat kubelet and runtime upgrades as coupled changes and validate behavior in staging clusters rather than trusting a no-op upgrade.

If you run platform or storage infrastructure, here’s a concise engineering checklist: schedule a test upgrade in staging; audit automation that deletes or archives PVC-backed data; verify CSI driver compatibility with the new unused-time semantics; and rehearse restore scenarios for any automation that will act on that timestamp. Don’t assume no-ops.

Kubernetes moving useful lifecycle signals to default Beta is overdue and correct. The real story isn’t a new field in the API — it’s that the control plane is taking responsibility for the state operators have been guessing about. That will surface a lot of previously invisible technical debt, and that disruption is exactly what needs to happen if storage in Kubernetes is going to stop being the Wild West.

Sources

kubernetespersistentvolumememory-qosworkload-aware-scheduling
← All articles
Kubernetes

Kubernetes 1.37: Native Histograms Beta Enabled by Default

Kubernetes 1.37 makes native histograms beta and enabled by default, changing telemetry semantics and forcing teams to test observability pipelines now.

Sep 22, 2026·3mkubernetesnative-histograms
Kubernetes

Kubernetes Feature Wave: Pod-Level Resource Managers, Memory QoS Beta, and Storage Hardening

Pod-level resource managers and Memory QoS advance in Kubernetes; storage hardening (EmptyDir, bind-mounts) alters evictions, unpacking, and testing now.

Sep 21, 2026·3mkubernetesmemory-qos
Kubernetes

containerd 2.4.0 designated active support through May 16, 2027; 1.7 EOL on Sept 30, 2026

containerd v2.4.0 is now the active support line through May 16, 2027; containerd 1.7 reaches EOL on Sept 30, 2026. Plan runtime upgrades for Kubernetes v1.37.

Sep 20, 2026·3mcontainerdkubernetes-1-37