-
Notifications
You must be signed in to change notification settings - Fork 0
/
Subutai.json
64 lines (64 loc) · 1.76 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
{
"name": "${environmentName}",
"description": "Python3 example",
"version": "1.0.0",
"author": "https://github.com/absidish",
"containers": [
{
"hostname": "${webContainerName}",
"template": "debian-stretch-python3@sydyk",
"peer-criteria": "HTTP-GROUP",
"size": "${containerSize}"
}
],
"peer-criteria": [
{
"name": "HTTP-GROUP"
}
],
"ansible-configuration": {
"source-url": "https://github.com/absidish/test-app1/archive/master.zip",
"ansible-playbook": "site.yml",
"extra-vars": [
{
"key": "message",
"value": "${message}"
}
],
"groups": [
{
"name": "wp",
"python-interpreter": "/usr/bin/python3",
"hostnames": [
"${webContainerName}"
]
}
]
},
"user-variables": {
"environmentName": {
"description": "Enter the environment name",
"type": "string",
"default": "wp",
"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"
},
"message": {
"description": "Enter the message",
"type": "string",
"default": "message",
"validation": "[a-zA-Z0-9]+"
}
}
}