Solo.io · Example Payload

Solo Agentgateway Backend Example

AI GatewayAgentic AIAPI GatewayEnvoyIstioKubernetesMCPService Mesh

Solo Agentgateway Backend Example is an example object payload from Solo.io, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

apiVersionkindmetadataspecstatus

Example Payload

solo-agentgateway-backend-example.json Raw ↑
{
  "apiVersion": "agentgateway.dev/v1alpha1",
  "kind": "AgentgatewayBackend",
  "metadata": {
    "name": "openai-backend",
    "namespace": "agentgateway-system",
    "labels": {
      "app": "agentgateway",
      "provider": "openai"
    }
  },
  "spec": {
    "type": "openai",
    "host": "api.openai.com",
    "port": 443,
    "auth": {
      "secretRef": {
        "name": "openai-api-key",
        "namespace": "agentgateway-system"
      }
    }
  },
  "status": {
    "conditions": [
      {
        "type": "Accepted",
        "status": "True",
        "reason": "Accepted",
        "message": "Backend configuration accepted"
      }
    ]
  }
}