-
Notifications
You must be signed in to change notification settings - Fork 5
/
vss-extension.json
139 lines (139 loc) · 4.54 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
{
"manifestVersion": 1,
"id": "vsix-argocd",
"name": "Argo CD Extension",
"version": "0.1.0",
"publisher": "scb-tomasmortensen",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Extend your pipelines with Argo CD integration.",
"categories": [
"Azure Pipelines"
],
"icons": {
"default": "images/extension-icon-128x128.png"
},
"files": [
{
"path": "ArgoCDTask"
}
],
"tags": [
"Argo CD",
"argocd",
"Pipelines",
"cd",
"continuous deployment"
],
"galleryFlags": [
"Free",
"Public"
],
"content": {
"license": {
"path": "license.md"
},
"details": {
"path": "overview.md"
}
},
"links": {
"overview": {
"uri": "https://github.com/scb-tomasmortensen/vsix-argocd/blob/master/README.md"
},
"license": {
"uri": "https://github.com/scb-tomasmortensen/vsix-argocd/blob/master/license.md"
},
"repository": {
"uri": "https://github.com/scb-tomasmortensen/vsix-argocd"
},
"issues": {
"uri": "https://github.com/scb-tomasmortensen/vsix-argocd/issues"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/scb-tomasmortensen/vsix-argocd"
},
"contributions": [
{
"id": "argocd",
"description": "Service endpoint type for Argo CD connections",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "argocd",
"displayName": "Argo CD",
"url": {
"displayName": "Server Url",
"helpText": "Url for the Argo CD server to connect to."
},
"dataSources": [
{
"name": "ArgoCDApplications",
"endpointUrl": "{{endpoint.url}}api/v1/applications",
"resultSelector": "jsonpath:$.items[*].metadata.name"
},
{
"name": "TestConnection",
"endpointUrl": "{{endpoint.url}}api/v1/applications",
"resultSelector": "jsonpath:$.items[*].metadata.name"
}
],
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"headers": [
{
"name": "Authorization",
"value": "Bearer {{endpoint.apitoken}}"
}
]
},
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-basic",
"inputDescriptors": [
{
"id": "username",
"name": "Username",
"description": "Username",
"inputMode": "textbox",
"validation": {
"isRequired": false,
"dataType": "string"
}
},
{
"id": "password",
"name": "Password",
"description": "Password",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": false,
"dataType": "string"
}
}
]
}
],
"helpMarkDown": "<a href=\"url-to-documentation\" target=\"_blank\"><b>Learn More</b></a>"
}
},
{
"id": "custom-build-release-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "ArgoCDTask"
}
}
]
}