llm-wiki wiki · sources 2026-06-14

原文:raw/kube-agentic-networking-architecture-analysis.md · 仓库:https://github.com/kubernetes-sigs/kube-agentic-networking · 优先级 P1

一句话定位

kube-agentic-networking 为 Kubernetes 中 agents/tools 提供 agentic networking policies and governance,面向 AI Agent 出口、工具调用和网络权限边界。

核心架构图

┌────────────────────────────────────────────────────────────────────────────┐
│ Agent communication policy intent                                          │
│ Agents, tools, sandboxes, and services need explicit network governance.   │
└────────────────────────────────────────────────────────────────────────────┘
                                       │
                                       ▼
┌────────────────────────────────────────────────────────────────────────────┐
│ kube-agentic-networking APIs                                               │
│ CRDs represent agent/tool identity, endpoint scope, and permitted          │
│ communication.                                                             │
└────────────────────────────────────────────────────────────────────────────┘
                                       │
                                       ▼
┌────────────────────────────────────────────────────────────────────────────┐
│ Policy controller                                                          │
│ Generates or coordinates network policy, gateway, and isolation artifacts. │
└────────────────────────────────────────────────────────────────────────────┘
                                       │
                                       ▼
┌────────────────────────────────────────────────────────────────────────────┐
│ Runtime boundary                                                           │
│ Kubernetes networking, agent sandboxes, MCP tools, and gateways enforce    │
│ the policy.                                                                │
└────────────────────────────────────────────────────────────────────────────┘

模块分层

层 / 模块 职责
CRD/policies agent/tool/network intent
Controller policy reconciliation
Gateway/network integration Gateway/network integration
Audit/governance signals Audit/governance signals

关键数据流

平台声明 agent/tool 网络策略
        │
        ▼
controller 解析目标和权限
        │
        ▼
下发到 gateway/network policy 层
        │
        ▼
Agent 调用工具时被策略约束
        │
        ▼
审计和状态回写

设计决策与哲学