Contour · Schema

SubCondition

A sub-condition providing additional detail about an error or warning.

EnvoyIngress ControllerKubernetesNetworkingProxy

Properties

Name Type Description
type string Type of the sub-condition.
status string Status of the sub-condition.
reason string Short reason code.
message string Human-readable details.
View JSON Schema on GitHub

JSON Schema

contour-subcondition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubCondition",
  "title": "SubCondition",
  "type": "object",
  "description": "A sub-condition providing additional detail about an error or warning.",
  "properties": {
    "type": {
      "type": "string",
      "description": "Type of the sub-condition."
    },
    "status": {
      "type": "string",
      "description": "Status of the sub-condition."
    },
    "reason": {
      "type": "string",
      "description": "Short reason code."
    },
    "message": {
      "type": "string",
      "description": "Human-readable details."
    }
  }
}