-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-deploy.json
222 lines (222 loc) · 6.72 KB
/
azure-deploy.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
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "0.0.0.5",
"parameters": {
"containerGroupPrefix": {
"type": "string",
"defaultValue": "workflow.benchmark.preparation",
"metadata": {
"description": "The name of the container group."
}
},
"identity": {
"type": "string",
"metadata": {
"description": "The ID of the user assigned identity to use for the container group."
}
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "Location for all resources."
}
},
"restartPolicy": {
"type": "string",
"defaultValue": "Never",
"allowedValues": [
"Always",
"Never",
"OnFailure"
],
"metadata": {
"description": "The behavior of Azure runtime if container has stopped."
}
},
"starttime": {
"type": "string",
"defaultValue": "[utcNow()]",
"metadata": {
"description": "The time this template is deployed."
}
},
"imageTag": {
"type": "string",
"defaultValue": "main",
"metadata": {
"description": "Image tag for the loader container."
}
},
"logWorkspaceId": {
"type": "string",
"metadata": {
"description": "The ID for a Log Analytics Workspace."
}
},
"logWorkspaceKey": {
"type": "securestring",
"metadata": {
"description": "The key for a Log Analytics Workspace."
}
},
"storageAccountKeySources": {
"type": "securestring",
"metadata": {
"description": "The storage account key for the storage account for source files."
}
},
"storageAccountNameSources": {
"type": "string",
"metadata": {
"description": "The storage account name for the storage account for source files."
}
},
"storageAccountShareSources": {
"type": "string",
"metadata": {
"description": "The file share name for the source files."
}
},
"storageAccountKeyOutputs": {
"type": "securestring",
"metadata": {
"description": "The storage account key for the storage account for output files."
}
},
"storageAccountNameOutputs": {
"type": "string",
"metadata": {
"description": "The storage account name for the storage account for output files."
}
},
"storageAccountShareOutputs": {
"type": "string",
"metadata": {
"description": "The file share name for the output files."
}
},
"rConfigActive": {
"type": "string",
"allowedValues": [
"2022Q4",
"2023Q4"
],
"metadata": {
"description": "Active configuration from config.yml"
}
}
},
"variables": {
"containerregistry": "ghcr.io/rmi-pacta",
"machineCpuCoresLimit": 1,
"machineCpuCoresRequest": 1,
"machineMemoryInGBLimit": 4,
"machineMemoryInGBRequest": 4,
"mountPathSources": "/mnt/benchmarks",
"mountPathOutputs": "/mnt/workflow-benchmark-preparation-outputs",
"containerGroupName": "[concat(parameters('containerGroupPrefix'), '-', parameters('rConfigActive'))]"
},
"functions": [],
"resources": [
{
"type": "Microsoft.ContainerInstance/containerGroups",
"apiVersion": "2021-09-01",
"name": "[variables('containerGroupName')]",
"location": "[parameters('location')]",
"identity": {
"type": "UserAssigned",
"userAssignedIdentities": {
"[parameters('identity')]": {}
}
},
"properties": {
"diagnostics": {
"logAnalytics": {
"logType": "ContainerInstanceLogs",
"workspaceId": "[parameters('logWorkspaceId')]",
"workspaceKey": "[parameters('logWorkspaceKey')]"
}
},
"containers": [
{
"name": "benchmark-prep-runner",
"properties": {
"image": "[concat(variables('containerregistry'),'/workflow.benchmark.preparation:', parameters('imageTag'))]",
"ports": [],
"resources": {
"limits": {
"cpu": "[variables('machineCpuCoresLimit')]",
"memoryInGB": "[variables('machineMemoryInGBLimit')]"
},
"requests": {
"cpu": "[variables('machineCpuCoresRequest')]",
"memoryInGB": "[variables('machineMemoryInGBRequest')]"
}
},
"environmentVariables": [
{
"name": "DEPLOY_START_TIME",
"value": "[parameters('starttime')]"
},
{
"name": "MACHINE_CORES",
"value": "[variables('machineCpuCoresRequest')]"
},
{
"name": "LOG_LEVEL",
"value": "TRACE"
},
{
"name": "BENCHMARKS_PREPARATION_INPUTS_PATH",
"value": "[variables('mountPathSources')]"
},
{
"name": "BENCHMARKS_PREPARATION_OUTPUTS_PATH",
"value": "[variables('mountPathOutputs')]"
},
{
"name": "R_CONFIG_ACTIVE",
"value": "[parameters('rConfigActive')]"
}
],
"volumeMounts": [
{
"name": "benchmarks",
"mountPath": "[variables('mountPathSources')]"
},
{
"name": "benchmark-preparation-outputs",
"mountPath": "[variables('mountPathOutputs')]"
}
]
}
}
],
"restartPolicy": "[parameters('restartPolicy')]",
"osType": "Linux",
"volumes": [
{
"name": "benchmarks",
"azureFile": {
"shareName": "[parameters('storageAccountShareSources')]",
"readOnly": true,
"storageAccountName": "[parameters('storageAccountNameSources')]",
"storageAccountKey": "[parameters('storageAccountKeySources')]"
}
},
{
"name": "benchmark-preparation-outputs",
"azureFile": {
"shareName": "[parameters('storageAccountShareOutputs')]",
"readOnly": false,
"storageAccountName": "[parameters('storageAccountNameOutputs')]",
"storageAccountKey": "[parameters('storageAccountKeyOutputs')]"
}
}
]
}
}
],
"outputs": {}
}