-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSubutai.json
84 lines (84 loc) · 2.32 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
{
"name": "${environmentName}",
"description": "pgAdmin4 Administration Server for Postgresql",
"version": "1.1.6",
"ssh-key": "postgres",
"author": "https://github.com/akarasulu",
"containers": [
{
"hostname": "pgadmin",
"template": "debian-stretch",
"peer-criteria": "DB-GROUP",
"size": "${containerSize}",
"port-mapping": [
{
"protocol": "https",
"domain": "${domain}",
"internal-port": "80",
"external-port": "443"
}
]
}
],
"peer-criteria": [
{
"name": "DB-GROUP"
}
],
"ansible-configuration": {
"source-url": "https://github.com/subutai-blueprints/subutai-pgadmin-blueprint/archive/master.zip",
"ansible-playbook": "main.yml",
"extra-vars": [
{
"key": "domain",
"value": "${domain}"
},
{
"key": "email",
"value": "${email}"
},
{
"key": "password",
"value": "${password}"
}
],
"groups": [
{
"name": "pgadmin",
"hostnames": [
"pgadmin"
]
}
]
},
"user-variables": {
"environmentName": {
"description": "Environment's name",
"type": "string",
"default": "pgadmin",
"validation": "[a-zA-Z0-9_]+"
},
"domain": {
"description": "Domain name",
"type": "domain",
"default": "pgadmin.envs.subut.ai",
"validation": "[a-zA-Z0-9_]+"
},
"email": {
"description": "Email for pgadmin web UI login",
"type": "string",
"default": "[email protected]"
},
"password": {
"description": "Common password: postgres, pgadmin, web ui user",
"type": "string",
"default": "secret"
},
"containerSize": {
"description": "Container Size",
"type": "enum",
"default": "MEDIUM",
"validation": "SMALL,MEDIUM,LARGE,HUGE"
}
}
}