ghes-config-nodes

APIs.ioEngineeringPlatform

Properties

Name Type Description
topology object
nodes array
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-ghes-config-nodes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ghes-config-nodes",
  "title": "ghes-config-nodes",
  "type": "object",
  "properties": {
    "topology": {
      "$ref": "#/components/schemas/ghes-cluster-topology"
    },
    "nodes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "hostname": {
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "replica": {
            "type": "boolean"
          },
          "cluster_roles": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ghes-cluster-roles"
            }
          }
        }
      }
    }
  }
}