forked from lbthomsen/subutai-blueprint-mate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Subutai.json
57 lines (57 loc) · 1.47 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
{
"name": "${environmentName}",
"description": "Mate Desktop",
"version": "1.0.1",
"author": "https://github.com/lbthomsen",
"ssh-key": "lth",
"containers": [
{
"hostname": "mate",
"template": "debian-stretch",
"peer-criteria": "MATE-GROUP",
"size": "${containerSize}"
},
{
"hostname": "mate-1",
"template": "debian-stretch",
"peer-criteria": "MATE-GROUP-1",
"size": "${containerSize}"
}
],
"peer-criteria": [
{
"name": "MATE-GROUP",
"max-price": "25"
},
{
"name": "MATE-GROUP-1",
"max-price": "25"
}
],
"ansible-configuration": {
"source-url": "https://github.com/lbthomsen/subutai-blueprint-mate/archive/master.zip",
"ansible-playbook": "all.json",
"groups": [
{
"name": "mate",
"hostnames": [
"mate"
]
}
]
},
"user-variables": {
"environmentName": {
"description": "Enter the environment name",
"type": "string",
"default": "wp",
"validation": "[a-zA-Z0-9]+"
},
"containerSize": {
"description": "Container Size",
"type": "enum",
"default": "SMALL",
"validation": "SMALL,LARGE,HUGE"
}
}
}