forked from TsuyoshiUshio/KubernetesTask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
150 lines (150 loc) · 3.83 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
{
"manifestVersion": 1,
"id": "k8s-endpoint",
"version": "4.0.0",
"name": "Kubernetes Tools Extension",
"description": "Kubernetes tools extension with k8s endpoint. Which enable kubectl, helm, istioctl and fluxctl command",
"publisher": "TsuyoshiUshio",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"icons": {
"default": "images/logo.png"
},
"categories": [
"Azure Pipelines"
],
"tags": [
"kubernetes",
"fluxctl"
],
"content": {
"details": {
"path": "k8s.md"
}
},
"contributions": [
{
"id": "service-endpoint",
"description": "Service Endpoint type for k8s connection",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [ "ms.vss-endpoint.endpoint-types" ],
"properties": {
"name": "kubernetes",
"displayName": "Kubernetes",
"config": {
"type": "string",
"description": "Paste your config file of k8s master node's config file.",
"required": true
},
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-none",
"inputDescriptors": [
{
"id": "kubeconfig",
"name": "Kubeconfig",
"description": "Copy your kubectl config",
"inputMode": "textArea",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
}
]
}
],
"helpMarkDown": "<a href=\"https://github.com/TsuyoshiUshio/KubernetesTask\" target=\"_blank\"><b>Learn More</b></a>"
}
},
{
"id": "apply-task",
"description": "Task executes the kubectl apply for you.",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "tasks/apply"
}
},
{
"id": "general-task",
"description": "Task executes a general kubectl command for you.",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "tasks/general"
}
},
{
"id": "downloader-task",
"description": "Task downloads kubectl and istioctl with adding path for you.",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "tasks/downloader"
}
},
{
"id": "istio-task",
"description": "Task execute istioctl command",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "tasks/istio"
}
},
{
"id": "helm-task",
"description": "Task execute helm command",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "tasks/helm"
}
},
{
"id": "flux-task",
"description": "Task execute fluxctl command",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "tasks/flux"
}
},
{
"id": "kubectl-task",
"description": "Task execute kubectl command",
"type": "ms.vss-distributed-task.task",
"targets": [ "ms.vss-distributed-task.tasks" ],
"properties": {
"name": "tasks/kubectl"
}
}
],
"files": [
{
"path": "tasks/apply"
},
{
"path": "tasks/general"
},
{
"path": "tasks/downloader"
},
{
"path": "tasks/istio"
},
{
"path": "tasks/helm"
},
{
"path": "tasks/flux"
},
{
"path": "tasks/kubectl"
}
]
}