This repository has been archived by the owner on Mar 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeploy.json
74 lines (71 loc) · 2.67 KB
/
deploy.json
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"$schema": "http://json-schema.org/draft/2019-09/schema#",
"title": "Deploy",
"description": "Matches a correct deploy attribute of a flake",
"definitions": {
"generic_settings": {
"type": "object",
"properties": {
"sshUser": { "type": "string" },
"user": { "type": "string" },
"sshOpts": { "type": "string" },
"fastConnection": { "type": "boolean" },
"autoRollback": { "type": "boolean"}
}
},
"node_settings": {
"type": "object",
"properties": {
"hostname": { "type": "string" }
},
"required": [ "hostname" ]
},
"profile_settings": {
"type": "object",
"properties": {
"path": { "type": "string" },
"activate": { "type": "string" },
"bootstrap": { "type": "string" }
},
"required": [ "path" ]
}
},
"type": "object",
"allOf": [
{ "$ref": "#/definitions/generic_settings" },
{
"type": "object",
"properties": {
"nodes": {
"type": "object",
"patternProperties": {
"[A-z][A-z0-9_-]*": {
"allOf": [
{ "$ref": "#/definitions/generic_settings" },
{ "$ref": "#/definitions/node_settings" },
{
"type": "object",
"properties": {
"profiles": {
"type": "object",
"patternProperties": {
"[A-z][A-z0-9_-]*": {
"allOf": [
{ "$ref": "#/definitions/generic_settings" },
{ "$ref": "#/definitions/profile_settings" }
]
}
},
"additionalProperties": false
}
}
}
]
}
},
"additionalProperties": false
}
}
}
]
}