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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2017-10-05 18:05:29 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2017-10-05 18:05:29 +0300
commite15fc89dd8f57f50cc5c15e6ad832eb2ebc6e985 (patch)
tree2b219d24005f350ced66b66a8de1167114046f7a /spec/fixtures/api/schemas/cluster_status.json
parentd8dd7147b5a88818d159499df9b08c43ce95126e (diff)
Added cluster controller specs
Diffstat (limited to 'spec/fixtures/api/schemas/cluster_status.json')
-rw-r--r--spec/fixtures/api/schemas/cluster_status.json11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/cluster_status.json b/spec/fixtures/api/schemas/cluster_status.json
new file mode 100644
index 00000000000..1f255a17881
--- /dev/null
+++ b/spec/fixtures/api/schemas/cluster_status.json
@@ -0,0 +1,11 @@
+{
+ "type": "object",
+ "required" : [
+ "status"
+ ],
+ "properties" : {
+ "status": { "type": "string" },
+ "status_reason": { "type": ["string", "null"] }
+ },
+ "additionalProperties": false
+}