Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cluster_status.json « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f9535286edc873bb7844002bf6bf510981b83c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
  "type": "object",
  "required" : [
    "status",
    "applications"
  ],
  "properties" : {
    "status": { "type": "string" },
    "status_reason": { "type": ["string", "null"] },
    "applications": {
      "type": "array",
      "items": { "$ref": "#/definitions/application_status" }
    }
  },
  "additionalProperties": false,
  "definitions": {
    "application_status": {
      "type": "object",
      "additionalProperties": false,
      "properties" : {
        "name": { "type": "string" },
        "status": {
          "type": {
            "enum": [
              "installable",
              "scheduled",
              "installing",
              "installed",
              "errored"
            ]
          }
        },
        "version": { "type": "string" },
        "status_reason": { "type": ["string", "null"] },
        "external_ip": { "type": ["string", "null"] },
        "external_hostname": { "type": ["string", "null"] },
        "hostname": { "type": ["string", "null"] },
        "email": { "type": ["string", "null"] },
        "stack": { "type": ["string", "null"] },
        "host": {"type": ["string", "null"]},
        "port": {"type": ["integer", "514"]},
        "protocol": {"type": ["integer", "0"]},
        "update_available": { "type": ["boolean", "null"] },
        "can_uninstall": { "type": "boolean" },
        "available_domains": {
          "type": "array",
          "items": { "$ref": "#/definitions/domain" }
        },
        "pages_domain": { "type": [ { "$ref": "#/definitions/domain" }, "null"] }
      },
      "required" : [ "name", "status" ]
    },
    "domain": { "id": "integer", "domain": "string" }
  }
}