-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy patharmdeploy.json
43 lines (43 loc) · 1.49 KB
/
armdeploy.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
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"type": "Microsoft.ContainerInstance/containerGroups",
"apiVersion": "2019-12-01",
"name": "[concat('smoketest', uniqueString(resourceGroup().id))]",
"location": "[resourceGroup().location]",
"properties": {
"containers": [
{
"name": "smoketest",
"properties": {
"image": "msusdev/webnext",
"resources": {
"requests": {
"cpu": 1.0,
"memoryInGB": 1.5
}
},
"ports": [
{
"port": 80
}
]
}
}
],
"osType": "Linux",
"ipAddress": {
"type": "Public",
"dnsNameLabel": "[concat('smoketestweb', uniqueString(resourceGroup().id))]",
"ports": [
{
"port": 80
}
]
}
}
}
]
}