Contour · Schema

Status

Standard Kubernetes Status response for error conditions.

EnvoyIngress ControllerKubernetesNetworkingProxy

Properties

Name Type Description
apiVersion string
kind string
message string Human-readable description of the error.
reason string Machine-readable reason for the error.
code integer HTTP status code.
View JSON Schema on GitHub

JSON Schema

contour-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Status",
  "title": "Status",
  "type": "object",
  "description": "Standard Kubernetes Status response for error conditions.",
  "properties": {
    "apiVersion": {
      "type": "string"
    },
    "kind": {
      "type": "string",
      "enum": [
        "Status"
      ]
    },
    "message": {
      "type": "string",
      "description": "Human-readable description of the error."
    },
    "reason": {
      "type": "string",
      "description": "Machine-readable reason for the error."
    },
    "code": {
      "type": "integer",
      "description": "HTTP status code."
    }
  }
}