forked from microsoft/elk-acs-kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainTemplate.json
465 lines (465 loc) · 14.1 KB
/
mainTemplate.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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"dnsNamePrefix": {
"type": "string",
"metadata": {
"description": "Sets the Domain name prefix for the cluster. The concatenation of the domain name and the regionalized DNS zone make up the fully qualified domain name associated with the public IP address."
}
},
"agentCount": {
"type": "int",
"defaultValue": 1,
"metadata": {
"description": "The number of agents for the cluster. This value can be from 1 to 100 (note, for Kubernetes clusters you will also get 1 or 2 public agents in addition to these seleted masters)"
},
"minValue": 1,
"maxValue": 100
},
"agentVMSize": {
"type": "string",
"defaultValue": "Standard_DS3_v2",
"allowedValues": [
"Standard_A0",
"Standard_A1",
"Standard_A2",
"Standard_A3",
"Standard_A4",
"Standard_A1_v2",
"Standard_A2_v2",
"Standard_A4_v2",
"Standard_A8_v2",
"Standard_A2m_v2",
"Standard_A4m_v2",
"Standard_A8m_v2",
"Standard_D2",
"Standard_D3",
"Standard_D4",
"Standard_D11",
"Standard_D12",
"Standard_D13",
"Standard_D14",
"Standard_D2_v2",
"Standard_D3_v2",
"Standard_D4_v2",
"Standard_D5_v2",
"Standard_D11_v2",
"Standard_D12_v2",
"Standard_D13_v2",
"Standard_D14_v2",
"Standard_DS2",
"Standard_DS3",
"Standard_DS4",
"Standard_DS11",
"Standard_DS12",
"Standard_DS13",
"Standard_DS14",
"Standard_DS2_v2",
"Standard_DS3_v2",
"Standard_DS4_v2",
"Standard_DS5_v2",
"Standard_DS11_v2",
"Standard_DS12_v2",
"Standard_DS13_v2",
"Standard_DS14_v2",
"Standard_G1",
"Standard_G2",
"Standard_G3",
"Standard_G4",
"Standard_G5",
"Standard_GS1",
"Standard_GS2",
"Standard_GS3",
"Standard_GS4",
"Standard_GS5"
],
"metadata": {
"description": "The size of the Virtual Machine as agent."
}
},
"linuxAdminUsername": {
"type": "string",
"defaultValue": "azureuser",
"metadata": {
"description": "User name for the Linux Virtual Machines."
}
},
"masterCount": {
"type": "int",
"defaultValue": 1,
"allowedValues": [
1,
3,
5
],
"metadata": {
"description": "The number of Kubernetes masters for the cluster."
}
},
"sshRSAPublicKey": {
"type": "string",
"metadata": {
"description": "Configure all linux machines with the SSH RSA public key string. Your key should include three parts, for example 'ssh-rsa AAAAB...snip...UcyupgH azureuser@linuxvm'"
}
},
"servicePrincipalClientId": {
"metadata": {
"description": "Client ID (used by cloudprovider)"
},
"type": "securestring"
},
"servicePrincipalClientSecret": {
"metadata": {
"description": "The Service Principal Client Secret."
},
"type": "securestring"
},
"adminPassword": {
"type": "securestring",
"metadata": {
"description": "Password to login controller node"
}
},
"ubuntuOSVersion": {
"type": "string",
"defaultValue": "16.04.0-LTS",
"allowedValues": [
"12.04.5-LTS",
"14.04.5-LTS",
"16.04.0-LTS"
],
"metadata": {
"description": "The Ubuntu version for the controller node. This will pick a fully patched image of this given Ubuntu version."
}
},
"privateKey": {
"type": "securestring",
"metadata": {
"description": "Base64 encoded private key corresbonding to the public key for ACS"
}
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "The location of all components"
}
},
"registryUrl": {
"type": "string",
"defaultValue": "",
"metadata": {
"description": "Custom registry(e.g. Docker Hub) url to be used"
}
},
"eventHubNamespace": {
"type": "string",
"defaultValue": "undefined",
"metadata": {
"description": "The target event hub namespace"
}
},
"eventHubKeyName": {
"type": "string",
"defaultValue": "undefined",
"metadata": {
"description": "The name of the shared access policy"
}
},
"eventHubKey": {
"type": "string",
"defaultValue": "undefined",
"metadata": {
"description": "The shared access key to the target event hub"
}
},
"eventHubEntityPath": {
"type": "string",
"defaultValue": "undefined",
"metadata": {
"description": "The target event hub name"
}
},
"eventHubPartitionnumber": {
"type": "string",
"defaultValue": "4",
"metadata": {
"description": "Partition count of the target event hub"
}
},
"eventHubThreadWaitSec": {
"type": "string",
"defaultValue": "10",
"metadata": {
"description": "Logstash event hub plugin thread wait interval in seconds"
}
},
"storageAccountSku": {
"type": "string",
"defaultValue": "Standard_LRS",
"allowedValues": [
"Standard_LRS",
"Standard_GRS",
"Standard_RAGRS",
"Standard_ZRS",
"Premium_LRS"
],
"metadata": {
"description": "Storage account sku to be used as Elasticsearch data node"
}
},
"authenticationMode": {
"type": "string",
"defaultValue": "BasicAuth",
"allowedValues": [
"BasicAuth",
"AzureAD"
],
"metadata": {
"description": "User authentication mode."
}
},
"azureAdClientId": {
"type": "string",
"defaultValue": "undefined",
"metadata": {
"description": "Azure AD client ID(Application ID)"
}
},
"azureAdClientSecret": {
"type": "securestring",
"defaultValue": "undefined",
"metadata": {
"description": "Azure AD client secret/key"
}
},
"tenant": {
"type": "string",
"defaultValue": "undefined",
"metadata": {
"description": "Azure AD tenant(e.g. contoso.onmicrosoft.com)"
}
}
},
"variables": {
"baseTemplateUrl": "[uri(deployment().properties.templateLink.uri, '.')]",
"archiveUrl": "[uri(deployment().properties.templateLink.uri, 'solution.zip')]",
"directoryName": "",
"adminUsername": "[parameters('linuxAdminUsername')]",
"agentCount": "[parameters('agentCount')]",
"agentsEndpointDNSNamePrefix": "[concat(parameters('dnsNamePrefix'), 'agents')]",
"agentVMSize": "[parameters('agentVMSize')]",
"masterCount": "[parameters('masterCount')]",
"mastersEndpointDNSNamePrefix": "[concat(parameters('dnsNamePrefix'), 'master')]",
"orchestratorType": "Kubernetes",
"sshRSAPublicKey": "[parameters('sshRSAPublicKey')]",
"servicePrincipalClientId": "[parameters('servicePrincipalClientId')]",
"servicePrincipalClientSecret": "[parameters('servicePrincipalClientSecret')]",
"controllerDNSNamePrefix": "[concat(parameters('dnsNamePrefix'), 'control')]",
"storageAccountName": "[concat(uniquestring(resourceGroup().id), 'ctl')]",
"frontEndNSGName": "[concat(uniquestring(resourceGroup().id), 'frontEndNSG')]",
"imagePublisher": "Canonical",
"imageOffer": "UbuntuServer",
"nicName": "controllernic",
"addressPrefix": "10.0.0.0/16",
"subnetName": "Subnet",
"subnetPrefix": "10.0.0.0/24",
"storageAccountType": "Standard_LRS",
"publicIPAddressName": "controllerip",
"publicIPAddressType": "Dynamic",
"vmName": "controllervm",
"vmSize": "Standard_A1",
"virtualNetworkName": "controller-vnet",
"vnetID": "[resourceId('Microsoft.Network/virtualNetworks',variables('virtualNetworkName'))]",
"subnetRef": "[concat(variables('vnetID'),'/subnets/',variables('subnetName'))]",
"dataStorageAccountName": "[concat(uniquestring(resourceGroup().id), 'data')]",
"registryName": "[concat(uniquestring(resourceGroup().id), 'registry')]",
"registryDisk": "[concat(uniquestring(resourceGroup().id), 'elkimage')]",
"basedPrivateKey": "[parameters('privateKey')]",
"baseUrl": "[concat(variables('baseTemplateUrl'), '/ARM-template/components/')]",
"registryTemplates": {
"True": "containerRegistry.json",
"False": "emptyTemplate.json"
},
"actualTemplate": "[concat(variables('baseUrl'), variables('registryTemplates')[string(empty(parameters('registryUrl')))])]"
},
"resources": [
{
"apiVersion": "2016-09-01",
"name": "containerService",
"type": "Microsoft.Resources/deployments",
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[concat(variables('baseUrl'), 'containerService.json')]",
"contentVersion": "1.0.0.0"
},
"parameters": {
"dnsNamePrefix": {
"value": "[parameters('dnsNamePrefix')]"
},
"agentCount": {
"value": "[parameters('agentCount')]"
},
"agentVMSize": {
"value": "[parameters('agentVMSize')]"
},
"linuxAdminUsername": {
"value": "[parameters('linuxAdminUsername')]"
},
"masterCount": {
"value": "[parameters('masterCount')]"
},
"sshRSAPublicKey": {
"value": "[parameters('sshRSAPublicKey')]"
},
"servicePrincipalClientId": {
"value": "[parameters('servicePrincipalClientId')]"
},
"servicePrincipalClientSecret": {
"value": "[parameters('servicePrincipalClientSecret')]"
},
"location": {
"value": "[parameters('location')]"
}
}
}
},
{
"apiVersion": "2016-09-01",
"name": "storageAccount",
"type": "Microsoft.Resources/deployments",
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[concat(variables('baseUrl'), 'storageAccount.json')]",
"contentVersion": "1.0.0.0"
},
"parameters": {
"storageAccountSku": {
"value": "[parameters('storageAccountSku')]"
},
"location": {
"value": "[parameters('location')]"
}
}
}
},
{
"apiVersion": "2016-09-01",
"name": "containerRegistry",
"type": "Microsoft.Resources/deployments",
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[variables('actualTemplate')]",
"contentVersion": "1.0.0.0"
},
"parameters": {
"location": {
"value": "[parameters('location')]"
}
}
}
},
{
"apiVersion": "2016-09-01",
"name": "controllerNode",
"type": "Microsoft.Resources/deployments",
"dependsOn": [
"[resourceId('Microsoft.Resources/deployments/', 'containerService')]",
"[resourceId('Microsoft.Resources/deployments/', 'storageAccount')]",
"[resourceId('Microsoft.Resources/deployments/', 'containerRegistry')]"
],
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[concat(variables('baseUrl'), 'controllerNode.json')]",
"contentVersion": "1.0.0.0"
},
"parameters": {
"dnsNamePrefix": {
"value": "[parameters('dnsNamePrefix')]"
},
"linuxAdminUsername": {
"value": "[parameters('linuxAdminUsername')]"
},
"adminPassword": {
"value": "[parameters('adminPassword')]"
},
"ubuntuOSVersion": {
"value": "[parameters('ubuntuOSVersion')]"
},
"privateKey": {
"value": "[parameters('privateKey')]"
},
"location": {
"value": "[parameters('location')]"
},
"registryUrl": {
"value": "[parameters('registryUrl')]"
},
"eventHubNamespace": {
"value": "[parameters('eventHubNamespace')]"
},
"eventHubKeyName": {
"value": "[parameters('eventHubKeyName')]"
},
"eventHubKey": {
"value": "[parameters('eventHubKey')]"
},
"eventHubEntityPath": {
"value": "[parameters('eventHubEntityPath')]"
},
"eventHubPartitionnumber": {
"value": "[parameters('eventHubPartitionnumber')]"
},
"eventHubThreadWaitSec": {
"value": "[parameters('eventHubThreadWaitSec')]"
},
"baseTemplateUrl": {
"value": "[variables('baseTemplateUrl')]"
},
"storageAccountSku": {
"value": "[parameters('storageAccountSku')]"
},
"archiveUrl": {
"value": "[variables('archiveUrl')]"
},
"directoryName": {
"value": "[variables('directoryName')]"
},
"authenticationMode": {
"value": "[parameters('authenticationMode')]"
},
"azureAdClientId": {
"value": "[parameters('azureAdClientId')]"
},
"azureAdClientSecret": {
"value": "[parameters('azureAdClientSecret')]"
},
"tenant": {
"value": "[parameters('tenant')]"
},
"servicePrincipalClientId": {
"value": "[parameters('servicePrincipalClientId')]"
},
"servicePrincipalClientSecret": {
"value": "[parameters('servicePrincipalClientSecret')]"
}
}
}
}
],
"outputs": {
"hostname": {
"type": "string",
"value": "[reference('controllerNode').outputs.hostname.value]"
},
"sshCommand": {
"type": "string",
"value": "[reference('controllerNode').outputs.sshCommand.value]"
}
}
}