OpenShift · Schema

RouteIngressCondition

Describes the state of a route at a point in time.

CI/CDCloud NativeContainersDevOpsEnterpriseKubernetesPaaS

Properties

Name Type Description
type string The type of the condition (e.g., Admitted).
status string
reason string
message string
lastTransitionTime string
View JSON Schema on GitHub

JSON Schema

openshift-rest-route-ingress-condition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RouteIngressCondition",
  "type": "object",
  "description": "Describes the state of a route at a point in time.",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of the condition (e.g., Admitted)."
    },
    "status": {
      "type": "string"
    },
    "reason": {
      "type": "string"
    },
    "message": {
      "type": "string"
    },
    "lastTransitionTime": {
      "type": "string"
    }
  }
}