forked from Azure/application-gateway-kubernetes-ingress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
continuous-deployment-pipeline.json
394 lines (394 loc) · 19.6 KB
/
continuous-deployment-pipeline.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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
{
"source": 2,
"revision": 1,
"description": "This is an example pipeline which creates an AKS cluster and installed AGIC as ingress controller",
"isDeleted": false,
"variables": {
"agicIdentityName": {
"value": "agic-identity"
},
"aksClusterGroupName": {
"value": "resource-group"
},
"aksClusterName": {
"value": "aks-cluster"
},
"applicationGatewayName": {
"value": "app-gateway"
},
"applicationGatewaySubnetPrefix": {
"value": "10.1.0.0/16"
},
"clientId": {
"value": null,
"isSecret": true
},
"clientSecret": {
"value": null,
"isSecret": true
},
"location": {
"value": "West Europe",
"allowOverride": true
}
},
"environments": [
{
"name": "Deploy Cluster",
"rank": 1,
"preDeployApprovals": {
"approvals": [
{
"rank": 1,
"isAutomated": true,
"isNotificationOn": false
}
],
"approvalOptions": {
"requiredApproverCount": null,
"releaseCreatorCanBeApprover": false,
"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped": false,
"enforceIdentityRevalidation": false,
"timeoutInMinutes": 0,
"executionOrder": 1
}
},
"postDeployApprovals": {
"approvals": [
{
"rank": 1,
"isAutomated": true,
"isNotificationOn": false
}
],
"approvalOptions": {
"requiredApproverCount": null,
"releaseCreatorCanBeApprover": false,
"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped": false,
"enforceIdentityRevalidation": false,
"timeoutInMinutes": 0,
"executionOrder": 2
}
},
"deployPhases": [
{
"deploymentInput": {
"parallelExecution": {
"parallelExecutionType": 0
},
"agentSpecification": {
"identifier": "ubuntu-18.04"
},
"skipArtifactsDownload": false,
"artifactsDownloadInput": {
"downloadInputs": []
},
"queueId": 4325,
"demands": [],
"enableAccessToken": false,
"timeoutInMinutes": 0,
"jobCancelTimeoutInMinutes": 1,
"condition": "succeeded()",
"overrideInputs": {}
},
"rank": 1,
"phaseType": 1,
"name": "Agent job",
"refName": null,
"workflowTasks": [
{
"environment": {},
"taskId": "46e4be58-730b-4389-8a2f-ea10b3e5e815",
"version": "1.*",
"name": "Create Kubernetes Cluster",
"refName": "",
"enabled": true,
"alwaysRun": false,
"continueOnError": false,
"timeoutInMinutes": 0,
"definitionType": "task",
"overrideInputs": {},
"condition": "succeeded()",
"inputs": {
"scriptLocation": "inlineScript",
"scriptPath": "",
"inlineScript": "# create a resource group\naz group create -g $(aksClusterGroupName) -l \"$(location)\"\n\n# create an AKS cluster\naz aks create -g $(aksClusterGroupName) -n $(aksClusterName) --node-count 3 --network-plugin azure --generate-ssh-keys --service-principal $(clientId) --client-secret $(clientSecret)\n\n# get AKS credentials\naz aks get-credentials --resource-group $(aksClusterGroupName) --name $(aksClusterName)",
"args": "",
"addSpnToEnvironment": "false",
"useGlobalConfig": "false",
"cwd": "",
"failOnStandardError": "false"
}
},
{
"environment": {},
"taskId": "46e4be58-730b-4389-8a2f-ea10b3e5e815",
"version": "1.*",
"name": "Create AGIC Identity",
"refName": "",
"enabled": true,
"alwaysRun": false,
"continueOnError": false,
"timeoutInMinutes": 0,
"definitionType": "task",
"overrideInputs": {},
"condition": "succeeded()",
"inputs": {
"scriptLocation": "inlineScript",
"scriptPath": "",
"inlineScript": "# Create identity in agent pool's resource group\nnodeResourceGroupName=$(az aks show -n $(aksClusterName) -g $(aksClusterGroupName) --query \"nodeResourceGroup\" -o tsv)\nnodeResourceGroupId=$(az group show -g $nodeResourceGroupName --query \"id\" -o tsv)\n\naz identity create -n $(agicIdentityName) -g $nodeResourceGroupName -l \"$(location)\"\nidentityPrincipalId=$(az identity show -n $(agicIdentityName) -g $nodeResourceGroupName --query \"principalId\" -o tsv)\nidentityResourceId=$(az identity show -n $(agicIdentityName) -g $nodeResourceGroupName --query \"id\" -o tsv)\nidentityClientId=$(az identity show -n $(agicIdentityName) -g $nodeResourceGroupName --query \"clientId\" -o tsv)\n\necho \"##vso[task.setvariable variable=identityClientId]$identityClientId\"\necho \"##vso[task.setvariable variable=identityResourceId]$identityResourceId\"\n\naz role assignment create --role Contributor --assignee-object-id \"$identityPrincipalId\" --scope \"$nodeResourceGroupId\"\naz role assignment create --role Contributor --assignee-object-id \"$identityPrincipalId\" --scope \"$nodeResourceGroupId\"",
"args": "",
"addSpnToEnvironment": "true",
"useGlobalConfig": "false",
"cwd": "",
"failOnStandardError": "false"
}
},
{
"environment": {},
"taskId": "068d5909-43e6-48c5-9e01-7c8a94816220",
"version": "0.*",
"name": "Install Helm 2.14.1",
"refName": "",
"enabled": true,
"alwaysRun": false,
"continueOnError": false,
"timeoutInMinutes": 0,
"definitionType": "task",
"overrideInputs": {},
"condition": "succeeded()",
"inputs": {
"helmVersion": "2.14.1",
"checkLatestHelmVersion": "false",
"installKubeCtl": "true",
"kubectlVersion": "1.16.2",
"checkLatestKubeCtl": "true"
}
},
{
"environment": {},
"taskId": "6c731c3c-3c68-459a-a5c9-bde6e6595b5b",
"version": "3.*",
"name": "Setup Helm Tiller and Helm Repo",
"refName": "",
"enabled": true,
"alwaysRun": false,
"continueOnError": false,
"timeoutInMinutes": 0,
"definitionType": "task",
"overrideInputs": {},
"condition": "succeeded()",
"inputs": {
"targetType": "inline",
"filePath": "",
"arguments": "",
"script": "kubectl create serviceaccount --namespace kube-system tiller-sa\nkubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller-sa\nhelm init --tiller-namespace kube-system --service-account tiller-sa --wait\n\n# setup helm repo\nhelm repo add aad-pod-identity https://raw.githubusercontent.com/Azure/aad-pod-identity/master/charts\nhelm repo add application-gateway-kubernetes-ingress https://appgwingress.blob.core.windows.net/ingress-azure-helm-package/\nhelm repo update",
"workingDirectory": "",
"failOnStderr": "false",
"noProfile": "true",
"noRc": "true"
}
},
{
"environment": {},
"taskId": "afa7d54d-537b-4dc8-b60a-e0eeea2c9a87",
"version": "0.*",
"name": "helm install/upgrade AAD Pod Identity",
"refName": "",
"enabled": true,
"alwaysRun": false,
"continueOnError": false,
"timeoutInMinutes": 0,
"definitionType": "task",
"overrideInputs": {},
"condition": "succeeded()",
"inputs": {
"connectionType": "None",
"azureSubscriptionEndpoint": "",
"azureResourceGroup": "",
"kubernetesCluster": "",
"useClusterAdmin": "false",
"kubernetesServiceEndpoint": "",
"namespace": "aad-pod-identity",
"command": "upgrade",
"chartType": "Name",
"chartName": "aad-pod-identity/aad-pod-identity",
"chartPath": "",
"version": "",
"releaseName": "aad-pod-identity",
"overrideValues": "rbac.enabled=true",
"valueFile": "",
"destination": "$(Build.ArtifactStagingDirectory)",
"canaryimage": "false",
"upgradetiller": "true",
"updatedependency": "false",
"save": "true",
"install": "true",
"recreate": "false",
"resetValues": "false",
"force": "true",
"waitForExecution": "true",
"arguments": "",
"enableTls": "false",
"caCert": "",
"certificate": "",
"privatekey": "",
"tillernamespace": ""
}
},
{
"environment": {},
"taskId": "afa7d54d-537b-4dc8-b60a-e0eeea2c9a87",
"version": "0.*",
"name": "helm install/upgrade AGIC",
"refName": "",
"enabled": true,
"alwaysRun": false,
"continueOnError": false,
"timeoutInMinutes": 0,
"definitionType": "task",
"overrideInputs": {},
"condition": "succeeded()",
"inputs": {
"connectionType": "None",
"azureSubscriptionEndpoint": "",
"azureResourceGroup": "",
"kubernetesCluster": "",
"useClusterAdmin": "false",
"kubernetesServiceEndpoint": "",
"namespace": "agic",
"command": "upgrade",
"chartType": "Name",
"chartName": "application-gateway-kubernetes-ingress/ingress-azure",
"chartPath": "",
"version": "",
"releaseName": "agic",
"overrideValues": "appgw.name=$(applicationGatewayName),appgw.subnetPrefix=$(applicationGatewaySubnetPrefix),armAuth.type=aadPodIdentity,armAuth.identityResourceID=$(identityResourceId),armAuth.identityClientID=$(identityClientId),rbac.enabled=true",
"valueFile": "",
"destination": "$(Build.ArtifactStagingDirectory)",
"canaryimage": "false",
"upgradetiller": "true",
"updatedependency": "false",
"save": "true",
"install": "true",
"recreate": "false",
"resetValues": "false",
"force": "true",
"waitForExecution": "false",
"arguments": "",
"enableTls": "false",
"caCert": "",
"certificate": "",
"privatekey": "",
"tillernamespace": ""
}
},
{
"environment": {},
"taskId": "cbc316a2-586f-4def-be79-488a1f503564",
"version": "1.*",
"name": "Install sample application",
"refName": "",
"enabled": true,
"alwaysRun": false,
"continueOnError": false,
"timeoutInMinutes": 0,
"definitionType": "task",
"overrideInputs": {},
"condition": "succeeded()",
"inputs": {
"connectionType": "None",
"kubernetesServiceEndpoint": "",
"azureSubscriptionEndpoint": "",
"azureResourceGroup": "",
"kubernetesCluster": "",
"useClusterAdmin": "false",
"namespace": "",
"command": "apply",
"useConfigurationFile": "false",
"configurationType": "configuration",
"configuration": "",
"inline": "",
"arguments": "-f https://raw.githubusercontent.com/Azure/application-gateway-kubernetes-ingress/aksgupta/cd/docs/examples/aspnetapp.yaml",
"secretType": "dockerRegistry",
"secretArguments": "",
"containerRegistryType": "Azure Container Registry",
"dockerRegistryEndpoint": "",
"azureSubscriptionEndpointForSecrets": "",
"azureContainerRegistry": "",
"secretName": "",
"forceUpdate": "true",
"configMapName": "",
"forceUpdateConfigMap": "false",
"useConfigMapFile": "false",
"configMapFile": "",
"configMapArguments": "",
"versionOrLocation": "version",
"versionSpec": "1.13.2",
"checkLatest": "false",
"specifyLocation": "",
"cwd": "$(System.DefaultWorkingDirectory)",
"outputFormat": "json"
}
}
]
}
],
"environmentOptions": {
"emailNotificationType": "OnlyOnFailure",
"emailRecipients": "release.environment.owner;release.creator",
"skipArtifactsDownload": false,
"timeoutInMinutes": 0,
"enableAccessToken": false,
"publishDeploymentStatus": true,
"badgeEnabled": false,
"autoLinkWorkItems": false,
"pullRequestDeploymentEnabled": false
},
"demands": [],
"conditions": [
{
"name": "ReleaseStarted",
"conditionType": 1,
"value": ""
}
],
"executionPolicy": {
"concurrencyCount": 1,
"queueDepthCount": 0
},
"retentionPolicy": {
"daysToKeep": 30,
"releasesToKeep": 3,
"retainBuild": true
},
"properties": {
"LinkBoardsWorkItems": {
"$type": "System.String",
"$value": "False"
},
"BoardsEnvironmentType": {
"$type": "System.String",
"$value": "unmapped"
}
},
"preDeploymentGates": {
"id": 0,
"gatesOptions": null,
"gates": []
},
"postDeploymentGates": {
"id": 0,
"gatesOptions": null,
"gates": []
}
}
],
"artifacts": [],
"triggers": [],
"releaseNameFormat": "Release-$(rev:r)",
"tags": [],
"name": "Continuous Deployment Pipeline",
"path": "\\",
"projectReference": null
}