EndpointHints

Routing hints that guide topology-aware routing decisions, directing clients to geographically or logically proximate endpoints.

Container OrchestrationKubernetesLoad BalancingNetworkingService Discovery

Properties

Name Type Description
forZones array Zones that should prefer routing to this endpoint.
forNodes array Nodes that should prefer routing to this endpoint.
View JSON Schema on GitHub

JSON Schema

kubernetes-services-endpointhints-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EndpointHints",
  "title": "EndpointHints",
  "type": "object",
  "description": "Routing hints that guide topology-aware routing decisions, directing clients to geographically or logically proximate endpoints.",
  "properties": {
    "forZones": {
      "type": "array",
      "description": "Zones that should prefer routing to this endpoint.",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the zone (e.g. us-east-1a)."
          }
        }
      }
    },
    "forNodes": {
      "type": "array",
      "description": "Nodes that should prefer routing to this endpoint.",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the node."
          }
        }
      }
    }
  }
}