-
Notifications
You must be signed in to change notification settings - Fork 61
/
azuredeploy.json
58 lines (58 loc) · 2.04 KB
/
azuredeploy.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
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"containerGroups_taganomaly_name": {
"defaultValue": "taganomaly",
"type": "String"
}
},
"variables": {},
"resources": [
{
"comments": "Generalized from resource: '/subscriptions/73a4ea93-d914-424d-9e64-28adf397e8e3/resourceGroups/om-taga/providers/Microsoft.ContainerInstance/containerGroups/taganomaly'.",
"type": "Microsoft.ContainerInstance/containerGroups",
"name": "[parameters('containerGroups_taganomaly_name')]",
"apiVersion": "2018-04-01",
"location": "westeurope",
"scale": null,
"properties": {
"containers": [
{
"name": "[parameters('containerGroups_taganomaly_name')]",
"properties": {
"image": "omri374/taganomaly",
"command": [],
"ports": [
{
"protocol": "TCP",
"port": 3838
}
],
"environmentVariables": [],
"resources": {
"requests": {
"memoryInGB": 4,
"cpu": 2
}
}
}
}
],
"restartPolicy": "Always",
"ipAddress": {
"ports": [
{
"protocol": "TCP",
"port": 3838
}
],
"type": "Public",
"dnsNameLabel": "[parameters('containerGroups_taganomaly_name')]"
},
"osType": "Linux"
},
"dependsOn": []
}
]
}