Skip to main content
Back to News
analysis/AI Infrastructure

Google AX Pushes AI Agents Toward Kubernetes Scale

Google’s open-source AX project treats agents as stateful workloads, revealing infrastructure patterns for durable, secure and cost-aware automation.

Stefan Trbojevic

Stefan Trbojevic

20 September 20266 min read
LinkedIn

The takeaway

The next generation of agent platforms will need durable execution, sandbox isolation, explicit network policy, and active-only compute rather than simple request-and-response hosting.

Why it matters for builders

Treat every serious agent as a governed workload with a bounded workspace, explicit tool permissions, egress policy, durable checkpoints, and a measurable cost envelope.

Google AX Pushes AI Agents Toward Kubernetes Scale

The next bottleneck for AI agents may not be model quality. It may be the scheduler underneath them. Google’s open-source AX project is turning agent execution into a declarative infrastructure problem, borrowing the language of Kubernetes while adding primitives for workspaces, network gateways, model configuration, suspension, and resume.

The project is still explicitly experimental. Its repository warns that the core concepts and protocols are changing and may introduce breaking changes before a stable release. That caveat matters. It also extends the infrastructure thread explored in our Google Home MCP analysis, moving from agent connectivity toward agent execution at scale. AX is not yet a production recommendation. It is a signal about where agent infrastructure is heading: away from one long-running process per agent and toward a fleet of isolated, stateful, intermittently active workloads.

What AX is trying to solve

Traditional container orchestration assumes a relatively familiar workload. A service stays available, consumes resources, responds to requests, and can be replaced when it fails. Batch jobs start, finish, and disappear. Autonomous agents fit neither model cleanly.

An agent may generate code, open a browser, call tools, wait for a human approval, receive an event hours later, and continue from the exact state it had before suspension. It needs isolation because its code and tool calls are not fully predictable. It needs persistent state because a restart should not erase the task. It also spends much of its life waiting, which makes reserving a full machine or container footprint wasteful.

AX describes four core primitives for this workload. A Task represents the agent workload. A Workspace pre-wires the files, repositories, MCP servers, and skills the workload needs. A Gateway restricts outbound traffic to an explicit allowlist. A Model defines the model configuration and credentials used by the platform. The result is closer to a Kubernetes manifest for an agent than to a chatbot API request.

The project also exposes agent-specific operations such as suspend, resume, and SSH access. Those are not cosmetic commands. They point to a lifecycle model where an agent can be paused without losing its environment, freeing capacity while it waits for inference, a tool response, or a human decision.

The infrastructure shift behind the interface

Google’s surrounding Agent Executor and Agent Substrate work makes the architectural direction clearer. In its Agent Executor announcement, Google describes durable execution, snapshotting, secure isolation, session consistency, connection recovery, and branching trajectories as native runtime concerns. Its Agent Substrate announcement adds a purpose-built execution layer for sandboxed agent environments, including suspend and resume operations, network policy, and kernel-level isolation.

AX is the orchestration layer that makes those capabilities programmable. Instead of asking a platform team to build a bespoke controller around every agent framework, it gives the fleet a common vocabulary. The manifest says what an agent needs. The runtime decides where and when it should run.

That distinction is important for cost. Agent workloads are bursty. A research agent may be active for seconds, idle while a search provider responds, active again while it evaluates results, then idle while a person reviews its proposed action. A platform that keeps every agent fully provisioned pays for waiting. A platform that can snapshot and resume state can treat active compute as a scarce, reusable resource.

The same design also changes the security boundary. AX does not assume that an agent should receive unrestricted network access or raw credentials. The Gateway primitive creates a natural place to enforce egress policy. The Workspace defines what enters the environment. The runtime can keep secrets outside the agent process and inject only approved access through a controlled path. Those are infrastructure controls, not prompt instructions, and that is the right level for production security.

Why this matters for builders

For most teams, AX is not a reason to migrate an n8n workflow or a small API agent to Kubernetes tomorrow. Its practical value is architectural: it gives builders a checklist for the capabilities a serious agent platform will eventually need.

Separate the reasoning loop from its execution environment. The model may change, but the workspace, tool permissions, network policy, state snapshots, and audit trail should remain explicit. Design for interruption too: human approval, callbacks, and long-running research are normal states, so execution IDs, checkpoint data, and idempotent tool calls must be first-class objects.

Keep tool access narrow and observable. MCP servers, browsers, shells, and APIs should be attached through policy-controlled gateways instead of shared credentials. Measure active work, not only request volume: activation latency, suspend and resume rates, tool-call cost, idle duration, and state size determine agent economics.

The unresolved tradeoffs

The Kubernetes analogy is powerful, but it can also mislead. Agents are not merely pods with a prompt attached. Their state can be semantically complex, their behavior is probabilistic, and their tool calls can create irreversible side effects. Declarative deployment does not make reasoning deterministic. A manifest can specify the environment, but it cannot guarantee that an agent will choose a safe plan.

There is also a portability question. AX is open source and designed around Kubernetes, but the surrounding substrate, sandbox choices, storage layer, and model integrations still influence how portable a deployment really is. Builders should inspect which parts are standard Kubernetes resources, which parts require Google’s runtime, and which operational guarantees are available on another cluster.

Finally, suspension is not free. State snapshots need storage, restore paths need testing, and external connections may expire while an agent is paused. A production system must define what happens to locks, browser sessions, OAuth tokens, queued webhooks, and partially completed mutations. Resume semantics are an application contract, not just a runtime feature.

Builder impact

AX’s most important idea is not the command-line syntax. It is the separation of active reasoning from durable execution. If agents become a mainstream workload, platforms will need to schedule them like a hybrid of services, jobs, and interactive sessions.

For n8n Lab builders, the immediate takeaway is to model every serious agent as a governed workload. Give it a bounded workspace, explicit tool permissions, an egress policy, durable checkpoints, and a measurable cost envelope. Keep the orchestration layer independent from the model provider wherever possible. That approach will work whether the eventual runtime is AX, Agent Substrate, a managed cloud harness, or a simpler queue-and-worker system.

Google’s AX repository is still a moving target, but its direction is already useful. The winning agent platforms will not only produce better answers. They will start, pause, recover, isolate, and scale those answers without losing control of the system underneath.

Share𝕏

The Automation Brief

Read 5 AI stories instead of 50.

The essential moves in AI agents, models, automation and infrastructure — filtered for builders and operators, with the part that actually matters.

No noise. Unsubscribe anytime.

Editorial notes

Reported by

Stefan Trbojevic

Edited by

n8n Lab Editorial

Published

20 September 2026

Updated

20 September 2026

AI disclosure: AI assisted with research and drafting. Factual claims are reviewed by an editor.

n8n Lab is an independent service provider. We are not affiliated with, endorsed by, or sponsored by n8n GmbH. “n8n” is a trademark of n8n GmbH and is used here only to describe the platform-specific implementation and automation services we provide.