forked from sgibson91/binderhub-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure.deploy.json
310 lines (310 loc) · 10.1 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
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
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"servicePrincipalAppId": {
"type": "securestring",
"minLength": 1,
"metadata": {
"description": "ID of your Service Principal. Will be used by the deploy script to create Azure resources on your behalf."
}
},
"servicePrincipalAppKey": {
"type": "securestring",
"minLength": 1,
"metadata": {
"description": "Password of your Service Principal. Will be used by the deploy script to create Azure resources on your behalf."
}
},
"servicePrincipalTenantId": {
"type": "securestring",
"minLength": 1,
"metadata": {
"description": "Tenant ID of your Service Principal. Will be used by the deploy script to create Azure resources on your behalf."
}
},
"binderhubName": {
"type": "string",
"minLength": 1,
"metadata": {
"description": "Namespace to deploy the BinderHub into on the Kubernetes cluster. This will be used to manage the BinderHub resources. Must also be unique across Azure. Your deployment will be accessible at <app-name>.<resource-group-location>.cloudapp.azure.com"
}
},
"binderhubVersion": {
"type": "string",
"minLength": 1,
"metadata": {
"description": "The version of the BinderHub Helm Chart to be deployed. This normally takes the form of versionnumber-hash, ie, 0.2.0-ae57d8. Refer to https://jupyterhub.github.io/helm-chart/#development-releases-binderhub for valid version numbers."
}
},
"aksNodeCount": {
"type": "int",
"minValue": 1,
"defaultValue": 3,
"metadata": {
"description": "The initial number of nodes to create in the AKS cluster."
}
},
"aksNodeVmSize": {
"type": "string",
"minLength": 1,
"defaultValue": "Standard_D2s_v3",
"metadata": {
"description": "The default VM size to use for the AKS cluster."
}
},
"imagePrefix": {
"type": "string",
"minLength": 1,
"metadata": {
"description": "Prefix to use for docker containers created by the BinderHub"
}
},
"containerRegistry": {
"type": "string",
"minLength": 1,
"defaultValue": "dockerhub",
"metadata": {
"description": "Choose between Docker Hub or Azure Container Registry"
},
"allowedValues": [
"dockerhub",
"azurecr"
]
},
"dockerHubUsername": {
"type": "string",
"minLength": 1,
"defaultValue": "null",
"metadata": {
"description": "The name of a valid Docker Hub user account."
}
},
"dockerHubPassword": {
"type": "securestring",
"minLength": 4,
"defaultValue": "null",
"metadata": {
"description": "The user password for Docker Hub"
}
},
"dockerHubOrganisation": {
"type": "string",
"defaultValue": "null",
"metadata": {
"description": "Organisation to use for Docker Hub; this is an optional value. Docker Username must be a member of this organisation if used."
}
},
"containerRegistryName": {
"type": "string",
"minLength": 4,
"maxLength": 50,
"defaultValue": "null",
"metadata": {
"description": "Name to be given to the Azure Container Registry. Must be unique to Azure."
}
},
"containerRegistrySku": {
"type": "string",
"minLength": 1,
"defaultValue": "Basic",
"metadata": {
"description": "Capacity and pricing tier for the Azure Container Registry. See the following website for details: https://docs.microsoft.com/en-us/azure/container-registry/container-registry-skus"
},
"allowedValues": [
"Basic",
"Standard",
"Premium"
]
},
"enableHttps": {
"type": "bool",
"defaultValue": false,
"metadata": {
"description": "Choose to enable HTTPS for a domain name using cert-manager and Let's Encrypt"
},
"allowedValues": [
false,
true
]
},
"contactEmail": {
"type": "string",
"defaultValue": "null",
"minLength": 1,
"metadata": {
"description": "An email address to provide to Let's Encrypt"
}
},
"domainName": {
"type": "string",
"defaultValue": "null",
"minLength": 1,
"metadata": {
"description": "The domain name to provide HTTPS certificates for"
}
},
"certManagerVersion": {
"type": "string",
"defaultValue": "null",
"minLength": 1,
"metadata": {
"description": "The version of cert-manager to install. Note: must include the preceding 'v', e.g., v0.11.0. Versions can be found here: https://github.com/jetstack/cert-manager/releases"
}
},
"nginxVersion": {
"type": "string",
"defaultValue": "null",
"minLength": 1,
"metadata": {
"description": "The version of nginx-ingress to install, e.g., 1.29.1. Versions can be found here: https://hub.helm.sh/charts/stable/nginx-ingress"
}
},
"setupDockerImage": {
"type": "string",
"minLength": 1,
"defaultValue": "sgibson91/binderhub-setup:1.3.0",
"metadata": {
"description": "Docker image to use for the BinderHub deployment. Most recent version number is recommended, latest tag will be subject to fluctuating changes. This image must be publicly accessible."
},
"allowedValues": [
"sgibson91/binderhub-setup:1.3.0",
"sgibson91/binderhub-setup:1.2.4",
"sgibson91/binderhub-setup:1.2.3",
"sgibson91/binderhub-setup:1.2.2",
"sgibson91/binderhub-setup:1.2.1",
"sgibson91/binderhub-setup:1.2.0",
"sgibson91/binderhub-setup:1.1.0",
"sgibson91/binderhub-setup:1.0.6",
"sgibson91/binderhub-setup:1.0.5",
"sgibson91/binderhub-setup:1.0.4",
"sgibson91/binderhub-setup:1.0.3",
"sgibson91/binderhub-setup:1.0.2",
"sgibson91/binderhub-setup:1.0.1",
"sgibson91/binderhub-setup:1.0.0",
"sgibson91/binderhub-setup:latest"
]
}
},
"resources": [
{
"name": "[concat(parameters('binderHubName'), 'setup')]",
"type": "Microsoft.ContainerInstance/containerGroups",
"apiVersion": "2018-10-01",
"location": "[resourceGroup().location]",
"tags": {},
"properties": {
"osType": "Linux",
"restartPolicy": "Never",
"containers": [
{
"name": "binderhub-setup",
"properties": {
"image": "[parameters('setupDockerImage')]",
"environmentVariables": [
{
"name": "BINDERHUB_CONTAINER_MODE",
"value": "true"
},
{
"name": "SP_APP_ID",
"value": "[parameters('servicePrincipalAppId')]"
},
{
"name": "SP_APP_KEY",
"secureValue": "[parameters('servicePrincipalAppKey')]"
},
{
"name": "SP_TENANT_ID",
"value": "[parameters('servicePrincipalTenantId')]"
},
{
"name": "RESOURCE_GROUP_LOCATION",
"value": "[resourceGroup().location]"
},
{
"name": "RESOURCE_GROUP_NAME",
"value": "[resourceGroup().name]"
},
{
"name": "AZURE_SUBSCRIPTION",
"value": "[subscription().id]"
},
{
"name": "BINDERHUB_NAME",
"value": "[parameters('binderHubName')]"
},
{
"name": "BINDERHUB_VERSION",
"value": "[parameters('binderHubVersion')]"
},
{
"name": "AKS_NODE_COUNT",
"value": "[parameters('aksNodeCount')]"
},
{
"name": "AKS_NODE_VM_SIZE",
"value": "[parameters('aksNodeVmSize')]"
},
{
"name": "DOCKER_IMAGE_PREFIX",
"value": "[parameters('imagePrefix')]"
},
{
"name": "CONTAINER_REGISTRY",
"value": "[parameters('containerRegistry')]"
},
{
"name": "DOCKERHUB_USERNAME",
"value": "[parameters('dockerHubUsername')]"
},
{
"name": "DOCKERHUB_PASSWORD",
"secureValue": "[parameters('dockerHubPassword')]"
},
{
"name": "DOCKERHUB_ORGANISATION",
"value": "[parameters('dockerHubOrganisation')]"
},
{
"name": "REGISTRY_NAME",
"value": "[parameters('containerRegistryName')]"
},
{
"name": "REGISTRY_SKU",
"value": "[parameters('containerRegistrySku')]"
},
{
"name": "ENABLE_HTTPS",
"value": "[parameters('enableHttps')]"
},
{
"name": "CONTACT_EMAIL",
"value": "[parameters('contactEmail')]"
},
{
"name": "DOMAIN_NAME",
"value": "[parameters('domainName')]"
},
{
"name": "CERTMANAGER_VERSION",
"value": "[parameters('certManagerVersion')]"
},
{
"name": "NGINX_VERSION",
"value": "[parameters('nginxVersion')]"
}
],
"resources": {
"requests": {
"cpu": 1,
"memoryInGB": 1.5
}
}
}
}
]
}
}
]
}