Istio MCP-over-XDSv3 server sample

Istio MCP-over-XDSv3 server sample

一个用于Istio的MCP-over-XDSv3 gRPC服务器示例实现。

这是一个 Istio MCP-over-XDSv3 gRPC 服务器的示例实现。

部署步骤

  1. 安装 ko 工具

  2. 构建并部署服务器到 Kubernetes:

    ko apply -f deploy.yaml
    
  3. 配置 istiod 使用此服务器作为配置源:

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: minimal
      meshConfig:
        configSources:
        - address: xds://mcp-sample.default.svc.cluster.local:15010
        - address: k8s://
    

现在您的 Istio 安装已配置为使用此示例 MCP 服务器作为配置源。