Ambassador · Schema

HostStatus

Status information for a Host resource

API DevelopmentGatewaysIngressKubernetesMock ServersMocksPlatformTesting

Properties

Name Type Description
state string Current state of the Host
phaseCompleted string Last completed phase of the Host lifecycle
errorReason string Description of any error state
tlsCertificateSource string Source of the TLS certificate
View JSON Schema on GitHub

JSON Schema

ambassador-host-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "HostStatus",
  "type": "object",
  "description": "Status information for a Host resource",
  "properties": {
    "state": {
      "type": "string",
      "description": "Current state of the Host"
    },
    "phaseCompleted": {
      "type": "string",
      "description": "Last completed phase of the Host lifecycle"
    },
    "errorReason": {
      "type": "string",
      "description": "Description of any error state"
    },
    "tlsCertificateSource": {
      "type": "string",
      "description": "Source of the TLS certificate"
    }
  }
}