forked from microsoft/azure-pipelines-yaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy-to-existing-kubernetes-cluster.properties.json
48 lines (48 loc) · 1.38 KB
/
deploy-to-existing-kubernetes-cluster.properties.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
{
"iconName": "aks",
"parameters": [
{
"name": "k8sResource",
"type": "environmentResource:kubernetes",
"required": "true",
"displayName": "Kubernetes Resource"
},
{
"name": "containerRegistryConnection",
"type": "endpoint:containerRegistry",
"required": "true",
"displayName": "Container Registry"
},
{
"name": "imageRepository",
"type": "string",
"required": "true",
"displayName": "Image Name"
},
{
"name": "servicePort",
"type": "pickList",
"required": "true",
"displayName": "Service Port"
},
{
"name": "reviewApp",
"type": "boolean",
"displayName": "Enable Review App flow for Pull Requests"
}
],
"assets": [
{
"type": "file",
"path": "k8s/deployment.yml",
"destinationPath": "manifests/deployment.yml",
"description": "Kubernetes manifest (deployment)"
},
{
"type": "file",
"path": "k8s/service.yml",
"destinationPath": "manifests/service.yml",
"description": "Kubernetes manifest (service)"
}
]
}