-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvss-extension.json
238 lines (237 loc) · 9.01 KB
/
vss-extension.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
{
"manifestVersion": "1",
"id": "chef",
"name": "Chef",
"version": "2.0.15",
"publisher": "chef-software",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Tasks to run CHef components in an Azure DevOps pipeline",
"categories": [
"Azure Pipelines"
],
"galleryFlags": [
],
"icons": {
"default": "assets/images/cheflogo.png"
},
"content": {
"details": {
"path": "assets/overview.md"
},
"license": {
"path": "assets/license.txt"
}
},
"screenshots": [
{
"path": "assets/images/screenshot_env_task.png"
},
{
"path": "assets/images/screenshot_env_parameters.png"
},
{
"path": "assets/images/screenshot_chef_server_endpoint.png"
}
],
"links": {
"home": {
"uri": "https://chef-partners.github.io/azuredevops-chef"
},
"getstarted": {
"uri": "https://chef-partners.github.io/azuredevops-chef/Getting-Started"
},
"issues": {
"uri": "https://github.com/chef-partners/azuredevops-chef/issues"
}
},
"contributions": [
{
"id": "chef-endpoint",
"description": "Service Endpoint for Chef Tasks",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "chefendpointv1",
"displayName": "Chef Endpoint",
"url": {
"displayName": "Target URL",
"helpText": "URL to the Chef Server or Supermarket, for example."
},
"inputDescriptors": [
{
"id": "sslVerify",
"name": "SSL Verification",
"description": "Enable or disable SSL verification for the specified URL. If using self-signed certificates this should be set to false.",
"inputMode": "combo",
"isConfidential": false,
"validation": {
"isRequired": false,
"dataType": "boolean"
},
"values": {
"inputId": "sslVerifyValues",
"defaultValue": true,
"possibleValues": [
{
"value": true,
"displayValue": "True"
},
{
"value": false,
"displayValue": "False"
}
]
}
}
],
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-none",
"inputDescriptors": [
{
"id": "username",
"name": "Username",
"description": "Username (node or client) on the targeted server",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "password",
"name": "Password",
"description": "Password or private key (in PEM format) for the given username",
"inputMode": "textarea",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
}
]
}
],
"helpMarkDown": "Please provide details for accessing a server in the Chef ecosystem, e.g. `chef-server` or `chef-supermarket`.<br />When providing details for a Chef Server remember to include the organization"
}
},
{
"id": "habitat-origin",
"description": "Habitat Origin",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "habitatoriginendpointv1",
"displayName": "Habitat Origin",
"url": {
"displayName": "Habitat Depot URL",
"helpText": "URL to the Habitat depot that will be used to deploy to"
},
"inputDescriptors": [
{
"id": "originName",
"name": "Origin Name",
"description": "Name of the Habitat origin",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "revision",
"name": "Revision",
"description": "Revision of the origin to use",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "publicKey",
"name": "Public Key",
"description": "Public item of the origin key pair",
"inputMode": "textarea",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
}
],
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-none",
"inputDescriptors": [
{
"id": "signingKey",
"name": "Signing Key",
"description": "Signing item of the origin key pair",
"inputMode": "textarea",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "authToken",
"name": "Habitat Auth Token",
"description": "Authentication token for publishing Habitat packages.",
"inputMode": "textbox",
"isConfidential": "true",
"validation": {
"isRequired": true,
"dataType": "string"
}
}
]
}
],
"helpMarkDown": "Please provide the requested information so that Habitat packages can be built and deployed. The Habitat Auth Token should be created from your profile at https://bldr.habitat.sh/#/profile"
}
},
{
"id": "install",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/install"
}
},
{
"id": "execute",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/execute"
}
},
{
"id": "helpers",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/helpers"
}
}
]
}