forked from lbthomsen/subutai-blueprint-nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subutai.json
73 lines (73 loc) · 2.03 KB
/
subutai.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
{
"name": "${environmentName}",
"description": "Web server nginx",
"version": "0.0.1",
"author": "https://github.com/lbthomsen",
"ssh-key": "lth",
"containers": [
{
"hostname": "${webContainerName}",
"template": "debian-stretch",
"peer-criteria": "HTTP-GROUP",
"size": "${containerSize}",
"port-mapping": [
{
"protocol": "http",
"domain": "${domainName}",
"internal-port": "80",
"external-port": "80"
}
]
}
],
"peer-criteria": [
{
"name": "HTTP-GROUP",
"max-price": "25"
}
],
"ansible-configuration": {
"source-url": "https://github.com/lbthomsen/subutai-blueprint-nginx/archive/master.zip",
"ansible-playbook": "site.yml",
"extra-vars": [
{
"key": "",
"value": "${domainName}"
}
],
"groups": [
{
"name": "ws",
"hostnames": [
"${webContainerName}"
]
}
]
},
"user-variables": {
"environmentName": {
"description": "Enter the environment name",
"type": "string",
"default": "wp",
"validation": "[a-zA-Z0-9]+"
},
"domainName": {
"description": "Enter the application domain name",
"type": "domain",
"default": "change.the.domain",
"validation": "[a-zA-Z0-9]+"
},
"webContainerName": {
"description": "Enter the container's hostname",
"type": "string",
"default": "wp",
"validation": "[a-zA-Z0-9]+"
},
"containerSize": {
"description": "Container Size",
"type": "enum",
"default": "TINY",
"validation": "TINY,SMALL,MEDIUM,LARGE,HUGE"
}
}
}