Back to news
cloud Priority 4/5 8/29/2026, 11:05:47 AM

Kubernetes v1.37 Promotes Metrics API to General Availability

Kubernetes v1.37 Promotes Metrics API to General Availability

The Kubernetes community has promoted the Metrics API to v1 status in the v1.37 release. This API serves as the core interface for retrieving CPU and memory usage metrics from Nodes and Pods, powering essential operational tools such as the kubectl top command and the Horizontal Pod Autoscaler. While the API has been in a beta state since Kubernetes v1.8, this graduation establishes formal stability guarantees for enterprise operators.

Related tools

Recommended tools for this topic

These picks prioritize high-intent tools relevant to this topic. Some links may include partner or affiliate tracking.

#kubernetes#devops#cloud

Comparison

AspectBefore / AlternativeAfter / This
API Versionmetrics.k8s.io/v1beta1metrics.k8s.io/v1
Stability & SupportBeta-level stability with potential deprecation risksGA-level backwards compatibility and long-term support
Resource SchemaStandard Node/Pod CPU and memory fieldsIdentical fields and schemas as the beta version

Action Checklist

  1. Identify usages of the v1beta1 Metrics API in manifests and automation scripts Check custom dashboards, scripting tools, and Kubernetes operator configurations.
  2. Update API references in configuration files from v1beta1 to v1 Verify that your cluster is running Kubernetes v1.37 or later before applying changes.
  3. Verify Horizontal Pod Autoscaler definitions continue to function with the v1 API Ensure autoscaling policies are correctly interpreting resource metrics under the new API version.

Source: Kubernetes Blog

This page summarizes the original source. Check the source for full details.

Related