-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.json
106 lines (106 loc) · 2.96 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "MicroServices Deploy Stage",
"description": "",
"longDescription": "The Delivery Pipeline for Devops Services allows you to automate your continuous deployment setup. To avoid conflicts, make sure to use unique application names. We recommend to use a common prefix like your name or initials.",
"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"
},
"orders-app-name": {
"description": "orders app name",
"type": "string"
},
"catalog-app-name": {
"description": "catalog app name",
"type": "string"
},
"ui-app-name": {
"description": "ui app name",
"type": "string"
},
"dashboard-app-name": {
"description": "dashboard app name",
"type": "string"
}
},
"required": [
"selected-region", "selected-organization", "selected-space",
"orders-app-name",
"catalog-app-name",
"ui-app-name",
"dashboard-app-name"
],
"form": [
{
"type": "validator",
"url": "/devops/setup/bm-helper/helper.html"
},
{
"type": "text",
"readonly": false,
"title": "Orders App Name",
"key": "orders-app-name"
},
{
"type": "text",
"readonly": false,
"title": "Catalog App Name",
"key": "catalog-app-name"
},
{
"type": "text",
"readonly": false,
"title": "UI App Name",
"key": "ui-app-name"
},
{
"type": "text",
"readonly": false,
"title": "Dashboard App Name",
"key": "dashboard-app-name"
},
{
"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
}
]
}
]
}