Contour · Schema

TCPProxy

TCP proxy configuration for passthrough TLS or TCP routing.

EnvoyIngress ControllerKubernetesNetworkingProxy

Properties

Name Type Description
services array Backend services for TCP proxying.
include object
View JSON Schema on GitHub

JSON Schema

contour-tcpproxy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TCPProxy",
  "title": "TCPProxy",
  "type": "object",
  "description": "TCP proxy configuration for passthrough TLS or TCP routing.",
  "properties": {
    "services": {
      "type": "array",
      "description": "Backend services for TCP proxying.",
      "items": {
        "$ref": "#/components/schemas/Service"
      }
    },
    "include": {
      "$ref": "#/components/schemas/Include"
    }
  }
}