-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcluster.json
34 lines (34 loc) · 941 Bytes
/
cluster.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
{
"properties": {
"vmSize": "Standard_NC6",
"vmPriority": "dedicated",
"scaleSettings": {
"autoScale": {
"minimumNodeCount": "2",
"maximumNodeCount": "2"
}
},
"virtualMachineConfiguration": {
"publisher": "Canonical",
"offer": "UbuntuServer",
"sku": "16.04.0-LTS"
},
"nodeSetup": {
"mountVolumes": {
"azureFileShares": [{
"accountName": "<file share account name>",
"azureFileUrl": "https://<file share account name>.file.core.windows.net/<file share name>",
"credentials": {
"accountKey": "<storage account key>"
},
"relativeMountPath": "external"
}]
}
},
"userAccountSettings": {
"adminUserName": "<admin username>",
"adminUserSshPublicKey": "<base64 encoded RSA key>",
"adminUserPassword": "<password>"
}
}
}