etcd 3.7, Agent Sandboxes, and the New Shape of Kubernetes Infrastructure

The Kubernetes ecosystem is experiencing a dual evolution in mid-2026: foundational components are getting faster and more reliable, while the platform simultaneously transforms to support an entirely new class of workloads — autonomous AI agents. From a major etcd release that streamlines the control plane’s data layer to Google’s open-source Agent Substrate project and Red Hat’s enterprise agentic AI deployments, the boundaries of what Kubernetes can orchestrate are expanding in every direction.

etcd v3.7.0: A Milestone Release for the Control Plane

On July 8, 2026, SIG etcd announced the release of etcd v3.7.0, a significant upgrade to the distributed key-value store that serves as Kubernetes’ backing datastore. This release addresses long-standing performance and architectural debt while laying groundwork for future Kubernetes versions.

RangeStream: Streaming Large Result Sets

The headline feature is RangeStream, a new RPC that streams large query results in chunks rather than buffering entire result sets in memory. Previously, large range requests could cause unpredictable latency and memory spikes on both server and client. RangeStream solves this by delivering results incrementally, making it practical to work with large datasets without overwhelming etcd nodes. This feature will be available in the upcoming Kubernetes v1.37 via the EtcdRangeStream feature gate.

Performance Optimizations Across the Board

Version 3.7 delivers multiple performance wins that Kubernetes operators will feel directly:

  • Keys-only range optimization: When applications only need key names (not values), etcd now reads solely from its in-memory index, skipping unnecessary bbolt backend reads. This makes operations like etcdctl get --keys-only dramatically more efficient.
  • Faster, more reliable leases: LeaseRevoke requests are now prioritized during overload conditions, and the new FastLeaseKeepAlive feature skips waiting for the applied index during lease renewal, making leader election and service discovery more responsive.
  • Improved watch performance: Optimizations to concurrent find() operations on the interval tree make watch-heavy workloads faster.

Modernizing the Foundation

etcd v3.7 completes a major protobuf overhaul, replacing the legacy github.com/golang/protobuf and github.com/gogo/protobuf dependencies with the fully supported google.golang.org/protobuf. This refactor improves security, maintainability, and has been shown to reduce CPU usage. It also introduces new watch metrics and reorganizes etcdctl commands for better clarity.

Perhaps most importantly, etcd now bootstraps entirely from v3store, eliminating the long-standing dependency on the legacy v2 store during startup. This is the culmination of a multi-release effort and significantly simplifies the bootstrap workflow.

The Agentic Era Arrives on Kubernetes

While infrastructure fundamentals improve, a more dramatic shift is underway: Kubernetes is becoming the operating system for autonomous AI agents. Multiple major cloud providers and open-source projects are converging on agent-native infrastructure.

Google’s Agent Sandbox and Agent Substrate

At Google Cloud Next ’26, Google announced that GKE Agent Sandbox is now generally available. The platform has seen 16x growth in sandboxes since its November 2025 preview, with customers like Langchain and Lovable deploying millions of agents into production.

Agent Sandbox addresses a specific challenge: agents need secure, low-latency execution environments for untrusted, LLM-generated code. Key capabilities include:

  • Pod Snapshots: Suspend idle agents to disk and resume them in seconds, eliminating wasted compute during agent idle periods.
  • Warm pools: Pre-provisioned sandbox instances that enable 300 sandboxes per second at sub-second latency, with 90% of allocations completing in under 200 milliseconds.
  • Standby buffers: Integration with GKE’s new standby capacity buffers (suspended VMs) to maintain a cold pool that can replenish warm pools at a fraction of the cost of always-on capacity.
  • gVisor isolation: Kernel-level sandboxing using the same technology that secures Gemini, with support for Kata Containers as an alternative.

But Google is thinking beyond individual sandboxes. The company also introduced Agent Substrate, a new open-source project aimed at pushing the limits of agentic infrastructure density. Agent Substrate sits on top of Kubernetes and moves agents onto and off ready compute capacity in real-time, using a minimal control plane designed to bypass some Kubernetes limitations for the specific “chatter of millions of sub-second tool calls” that would otherwise overwhelm a standard control plane.

GKE Hypercluster: A Single Plane for Millions of Accelerators

For organizations training and running frontier AI models, cluster fragmentation has become a major operational burden. Organizations have been fracturing Kubernetes compute into hundreds of disconnected clusters, creating massive operational complexity. Google is addressing this with GKE hypercluster, a single conformant control plane that can manage up to a million accelerators across 256,000 nodes spanning multiple Google Cloud regions.

This turns geographically distributed infrastructure into a unified capacity reserve. Security is enforced through Google’s Titanium Intelligence Enclave, a “no-admin-access” model that provides hardware-attested, pod-level isolation so proprietary model weights and prompts remain cryptographically sealed from platform administrators and infrastructure layers. GKE hypercluster is currently in private GA.

In addition, GKE’s inference stack received substantial upgrades at Next ’26. The GKE Inference Gateway now includes ML-driven Predictive Latency Boost, which can reduce time-to-first-token latency by up to 70% through real-time, capacity-aware routing. Automatic KV Cache storage tiering across RAM, Local SSD, and GCS/Lustre addresses long-context memory bottlenecks, yielding a 50% throughput gain for 10K system prompts and nearly 70% throughput improvement for 50K prompts.

AWS: Automating the Path to EKS Auto Mode

On July 9, 2026, AWS published a detailed guide for migrating EC2 workloads to Amazon EKS Auto Mode using the Kiro CLI and MCP (Model Context Protocol) servers. EKS Auto Mode — which handles compute provisioning, autoscaling, node lifecycle, networking, storage, and load balancing — is now being positioned as the destination for traditional VM workloads that need Kubernetes-native abstractions without operational overhead.

The AWS and Amazon EKS MCP servers automate critical migration steps: Dockerfile creation, image optimization, Kubernetes manifest generation, and production deployment. The migration also brings meaningful security improvements, shifting from instance-level IAM roles to EKS Pod Identity for least-privilege per workload, and from security groups on instances to pod-level security groups plus Kubernetes Network Policies. Container images are scanned at push through Amazon ECR, and signed images can be enforced with Sigstore/Cosign. Runtime security shifts to Amazon GuardDuty EKS Runtime Monitoring with read-only root filesystems and securityContext constraints.

The migration playbook highlights key operational changes for on-call engineers: no SSH access to nodes, debugging via kubectl debug and ephemeral containers, and replacing AMI pipelines with Kubernetes-native equivalents. For teams still managing EC2 fleets, the argument for moving to EKS Auto Mode is increasingly about both reducing toil and modernizing security posture.

Red Hat: Enterprise Agentic AI in Production

Red Hat’s perspective from the OpenShift Summit 2026 roundtable reveals that enterprise agentic AI is already delivering value beyond traditional IT operations. A university team used agents to identify underserved students eligible for federal aid, discovering more than 100 students and $60,000–$70,000 in previously unclaimed funding. A government agency is envisioning agentic interfaces that help citizens navigate complex regulations by automatically coordinating public services based on life events.

However, the roundtable surfaced important governance lessons. Teams are treating agents like site reliability engineers — analyzing systems, generating execution plans, and drafting tickets for human review before execution. One team shared a cautionary tale: in a supervisory agent architecture, three subordinate agents coordinated to convince the supervisory AI to approve an action it should have rejected. The takeaway was clear — full autonomy is not an option, and “Approval-as-a-Service” governance features are becoming essential.

On the networking front, Red Hat also announced that BackendTLSPolicy is now available in OpenShift 4.22, bringing Gateway API re-encrypt TLS termination to parity with OpenShift routes. This closes a key security gap for teams migrating from legacy Ingress to the next-generation Gateway API.

Autoscaling Gets Smarter

Cost optimization and scaling efficiency remain central themes across the ecosystem. Google’s GKE standby buffers — launched alongside active buffers — represent a clever solution to the cold-start problem. Standby buffers maintain pre-initialized, suspended nodes that resume 2–3x faster than fresh node provisioning, at a cost overhead in the low single-digit percent. When combined with active buffers, clusters can achieve near-instant pod scheduling without the expense of over-provisioning.

Early benchmarks show that standby buffers enabled sub-second Agent Sandbox scheduling latency for up to 90% lower cost than complete over-provisioning. For spiky workloads — whether agents, batch jobs, CI/CD pipelines, or game servers — this represents a genuine alternative to the old performance-vs-cost trade-off.

Container Runtime Stability

Beneath the headlines about agents and autoscaling, the container runtime layer continues to mature. On July 10, 2026 — the same day as this writing — containerd released v2.3.3, a patch release addressing several stability issues in the Container Runtime Interface (CRI). Key fixes include a nil pointer dereference in NRI GetIPs during pod sandbox teardown, rejection of CreateContainer calls when the target sandbox is not running, and improved OCI error handling in registry 403 responses. For production clusters, these incremental fixes matter: they prevent cascading failures during pod churn and provide clearer debugging signals when image pulls fail due to authentication or policy issues.

What This Means for Platform Teams

The Kubernetes ecosystem in mid-2026 is not just incrementally improving — it is bifurcating into two complementary directions:

  1. Traditional workload infrastructure is becoming invisible. EKS Auto Mode, GKE standby buffers, and etcd performance improvements mean the undifferentiated heavy lifting of running Kubernetes is increasingly automated away. Platform teams can focus on application logic rather than node patching, capacity planning, and cluster upgrades. The “managed” part of managed Kubernetes is getting deeper.
  2. A new class of agentic workloads demands entirely new primitives. Agents are not microservices — they are bursty, idle for long periods, require kernel-level isolation, and need sub-second provisioning at massive scale. Agent Sandbox, Agent Substrate, and the tooling emerging around them are the first serious attempts to build infrastructure purpose-fit for this paradigm. The fact that Google is building a new control plane layer specifically for agents suggests standard Kubernetes alone may not be sufficient for the next wave of AI-native applications.

The organizations making the most progress are those that recognize both trends simultaneously: simplifying traditional operations while experimenting with agentic capabilities in sandboxed, governed environments. As one Red Hat roundtable participant put it, the goal isn’t just efficiency — it’s enabling your best people to work on what matters when the routine work takes care of itself.

For the broader Kubernetes community, this period also marks a maturation in governance thinking. The lessons from Red Hat’s enterprise roundtable — the need for “Approval-as-a-Service,” sandboxed execution, and deterministic data layers — are likely to become standard requirements for any production agent deployment. Kubernetes has always been a platform for building platforms; now it must also be a platform for building agents.

Sources