|
1 | 1 | "adminUsername": "[parameters('linuxAdminUsername')]", |
2 | 2 | "targetEnvironment": "[parameters('targetEnvironment')]", |
3 | 3 | "maxVMsPerPool": 100, |
4 | | - "maxVMsPerStorageAccount": 20, |
5 | | - "maxStorageAccountsPerAgent": "[div(variables('maxVMsPerPool'),variables('maxVMsPerStorageAccount'))]", |
6 | | - "dataStorageAccountPrefixSeed": 97, |
7 | 4 | "apiVersionDefault": "2016-03-30", |
8 | | - "apiVersionStorage": "2015-06-15", |
9 | | -{{if .HasManagedDisks}} |
10 | | - "apiVersionStorageManagedDisks": "2016-04-30-preview", |
11 | | -{{end}} |
12 | 5 | {{if .LinuxProfile.HasSecrets}} |
13 | 6 | "linuxProfileSecrets" : |
14 | 7 | [ |
|
41 | 34 | "masterNSGID": "[resourceId('Microsoft.Network/networkSecurityGroups',variables('masterNSGName'))]", |
42 | 35 | "masterNSGName": "[concat(variables('orchestratorName'), '-master-nsg-', variables('nameSuffix'))]", |
43 | 36 | "masterPublicIPAddressName": "[concat(variables('orchestratorName'), '-master-ip-', variables('masterEndpointDNSNamePrefix'), '-', variables('nameSuffix'))]", |
| 37 | + "apiVersionStorage": "2015-06-15", |
| 38 | + "storageAccountBaseName": "[uniqueString(concat(variables('masterEndpointDNSNamePrefix'),variables('location'),variables('orchestratorName')))]", |
44 | 39 | "masterStorageAccountExhibitorName": "[concat(variables('storageAccountBaseName'), 'exhb0')]", |
| 40 | + "storageAccountType": "Standard_LRS", |
| 41 | +{{if .HasStorageAccountDisks}} |
| 42 | + "maxVMsPerStorageAccount": 20, |
| 43 | + "maxStorageAccountsPerAgent": "[div(variables('maxVMsPerPool'),variables('maxVMsPerStorageAccount'))]", |
| 44 | + "dataStorageAccountPrefixSeed": 97, |
| 45 | + "storageAccountPrefixes": [ "0", "6", "c", "i", "o", "u", "1", "7", "d", "j", "p", "v", "2", "8", "e", "k", "q", "w", "3", "9", "f", "l", "r", "x", "4", "a", "g", "m", "s", "y", "5", "b", "h", "n", "t", "z" ], |
| 46 | + "storageAccountPrefixesCount": "[length(variables('storageAccountPrefixes'))]", |
| 47 | + {{GetSizeMap}}, |
| 48 | +{{end}} |
| 49 | +{{if .HasManagedDisks}} |
| 50 | + "apiVersionStorageManagedDisks": "2016-04-30-preview", |
| 51 | +{{end}} |
| 52 | +{{if .MasterProfile.IsStorageAccount}} |
45 | 53 | "masterStorageAccountName": "[concat(variables('storageAccountBaseName'), 'mstr0')]", |
| 54 | +{{end}} |
46 | 55 | {{if .MasterProfile.IsCustomVNET}} |
47 | 56 | "masterVnetSubnetID": "[parameters('masterVnetSubnetID')]", |
48 | 57 | {{else}} |
|
80 | 89 | "[parameters('location')]" |
81 | 90 | ], |
82 | 91 | "location": "[variables('locations')[mod(add(2,length(parameters('location'))),add(1,length(parameters('location'))))]]", |
83 | | - "storageAccountBaseName": "[uniqueString(concat(variables('masterEndpointDNSNamePrefix'),variables('location'),variables('orchestratorName')))]", |
84 | | - "storageAccountPrefixes": [ "0", "6", "c", "i", "o", "u", "1", "7", "d", "j", "p", "v", "2", "8", "e", "k", "q", "w", "3", "9", "f", "l", "r", "x", "4", "a", "g", "m", "s", "y", "5", "b", "h", "n", "t", "z" ], |
85 | | - "storageAccountPrefixesCount": "[length(variables('storageAccountPrefixes'))]", |
86 | | - "storageAccountType": "Standard_LRS", |
87 | 92 | {{if IsDCOS190}} |
88 | 93 | "masterSshInboundNatRuleIdPrefix": "[concat(variables('masterLbID'),'/inboundNatRules/SSH-',variables('masterVMNamePrefix'))]", |
89 | 94 | "masterSshPort22InboundNatRuleIdPrefix": "[concat(variables('masterLbID'),'/inboundNatRules/SSHPort22-',variables('masterVMNamePrefix'))]", |
|
0 commit comments