-
Notifications
You must be signed in to change notification settings - Fork 0
/
Subutai.json
90 lines (90 loc) · 2.53 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "${environmentName}",
"description": "Gitea",
"version": "1.0.0",
"author": "https://github.com/etursunbaev",
"containers": [
{
"hostname": "${webContainerName}",
"template": "debian-stretch",
"peer-criteria": "HTTP-GROUP",
"size": "${containerSize}",
"port-mapping": [
{
"protocol": "https",
"domain": "${domainName}",
"internal-port": "80",
"external-port": "443"
}
]
}
],
"peer-criteria": [
{
"name": "HTTP-GROUP"
}
],
"ansible-configuration": {
"source-url": "https://github.com/etursunbaev/gitea-blueprint/archive/master.zip",
"ansible-playbook": "site.yml",
"extra-vars": [
{
"key": "domain_name",
"value": "${domainName}"
},
{
"key": "admin_password",
"value": "${adminPassword}"
},
{
"key": "max_uploadsize",
"value": "${maxUploadsize}"
}
],
"groups": [
{
"name": "jbp",
"hostnames": [
"${webContainerName}"
]
}
]
},
"user-variables": {
"environmentName": {
"description": "Enter the environment name",
"type": "string",
"default": "jbp",
"validation": "[a-zA-Z0-9]+"
},
"domainName": {
"description": "Enter the application domain name",
"type": "domain",
"default": "change.the.domain",
"validation": "[a-zA-Z0-9]+"
},
"adminPassword": {
"description": "Administrator password",
"type": "string",
"default": "admin"
},
"maxUploadsize": {
"description": "Max Upload Size in Mb",
"type": "number",
"default": "100",
"validation": "[0-9]+"
},
"webContainerName": {
"description": "Enter the container's hostname",
"type": "string",
"default": "jbp",
"validation": "[a-zA-Z0-9]+"
},
"containerSize": {
"description": "Container Size",
"type": "enum",
"default": "SMALL",
"validation": "TINY,SMALL,MEDIUM,LARGE,HUGE"
}
}
}