-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.json
64 lines (64 loc) · 1.8 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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Sample Deploy Stage",
"description": "sample toolchain",
"longDescription": "The Delivery Pipeline automates continuous deployment.",
"type": "object",
"properties": {
"selected-region": {
"description": "The Bluemix region",
"type": "string"
},
"selected-organization": {
"description": "The Bluemix org",
"type": "string"
},
"selected-space": {
"description": "The Bluemix space",
"type": "string"
}
},
"required": ["selected-region", "selected-organization", "selected-space"],
"form": [
{
"type": "validator",
"url": "/devops/setup/bm-helper/helper.html"
},
{
"type": "table",
"columnCount": 3,
"widths": ["33%", "33%", "33%"],
"items": [
{
"type": "label",
"title": "Region"
},
{
"type": "label",
"title": "Organization"
},
{
"type": "label",
"title": "Space"
},
{
"type": "select",
"key": "selected-region"
},
{
"type": "select",
"key": "selected-organization"
},
{
"type": "select",
"key": "selected-space",
"readonly": false
}
]
},
{
"type": "label",
"title": "Please fill in the fields above."
}
]
}