-
Notifications
You must be signed in to change notification settings - Fork 2
/
marathon.json
50 lines (50 loc) · 1.01 KB
/
marathon.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
{
"id": "openvpn",
"instances": 1,
"portDefinitions": [],
"acceptedResourceRoles":[
"slave_public"
],
"container": {
"type": "DOCKER",
"docker": {
"portMappings": [
{
"hostPort": 5000,
"containerPort": 5000,
"protocol": "tcp",
"name": "openvpn-admin"
},
{
"hostPort": 1194,
"containerPort": 1194,
"protocol": "udp",
"name": "openvpnudp"
}
],
"network": "BRIDGE",
"image": "aggress/dcos-openvpn:0.0.0-2.0",
"forcePullImage": true,
"privileged": true
}
},
"healthChecks": [
{
"gracePeriodSeconds": 360,
"intervalSeconds": 30,
"timeoutSeconds": 5,
"maxConsecutiveFailures": 3,
"path": "/status",
"portIndex": 0,
"protocol": "MESOS_HTTPS",
"ignoreHttp1xx": false
}
],
"cpus": 1,
"mem": 128,
"requirePorts": false,
"env": {
"OVPN_USERNAME": "admin",
"OVPN_PASSWORD": "password"
}
}