OpenShift · Schema

Probe

Describes a health check to be performed against a container.

CI/CDCloud NativeContainersDevOpsEnterpriseKubernetesPaaS

Properties

Name Type Description
httpGet object
tcpSocket object
exec object
initialDelaySeconds integer
periodSeconds integer
timeoutSeconds integer
successThreshold integer
failureThreshold integer
View JSON Schema on GitHub

JSON Schema

openshift-rest-probe-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Probe",
  "type": "object",
  "description": "Describes a health check to be performed against a container.",
  "properties": {
    "httpGet": {
      "type": "object"
    },
    "tcpSocket": {
      "type": "object"
    },
    "exec": {
      "type": "object"
    },
    "initialDelaySeconds": {
      "type": "integer"
    },
    "periodSeconds": {
      "type": "integer"
    },
    "timeoutSeconds": {
      "type": "integer"
    },
    "successThreshold": {
      "type": "integer"
    },
    "failureThreshold": {
      "type": "integer"
    }
  }
}