2017-10-05 11:05:29 -04:00
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"required" : [
|
|
|
|
"status"
|
|
|
|
],
|
|
|
|
"properties" : {
|
|
|
|
"status": { "type": "string" },
|
2017-10-31 06:29:56 -04:00
|
|
|
"status_reason": { "type": ["string", "null"] },
|
|
|
|
"applications": { "$ref": "#/definitions/applications" }
|
2017-10-05 11:05:29 -04:00
|
|
|
},
|
2017-10-31 06:29:56 -04:00
|
|
|
"additionalProperties": false,
|
|
|
|
"definitions": {
|
|
|
|
"applications": {
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"properties" : {
|
|
|
|
"helm": { "$ref": "#/definitions/app_status" },
|
|
|
|
"runner": { "$ref": "#/definitions/app_status" },
|
|
|
|
"ingress": { "$ref": "#/definitions/app_status" },
|
|
|
|
"prometheus": { "$ref": "#/definitions/app_status" }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"app_status": {
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"properties" : {
|
|
|
|
"status": {
|
|
|
|
"type": {
|
|
|
|
"enum": [
|
|
|
|
"installable",
|
|
|
|
"installing",
|
|
|
|
"installed",
|
|
|
|
"error"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"status_reason": { "type": ["string", "null"] }
|
|
|
|
},
|
|
|
|
"required" : [ "status" ]
|
|
|
|
}
|
|
|
|
}
|
2017-10-05 11:05:29 -04:00
|
|
|
}
|