forked from Capgemini/mesos-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarathon.json
41 lines (40 loc) · 803 Bytes
/
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
{
"id": "mesos-ui",
"instances": 1,
"cpus": 1,
"mem": 512,
"env": {
"ZOOKEEPER_ADDRESS": "127.0.0.1:2181"
},
"labels": {
"DCOS_PACKAGE_NAME": "mesos-ui",
"DCOS_PACKAGE_IS_FRAMEWORK": "false",
"DCOS_PACKAGE_VERSION": "0.1.0"
},
"healthChecks": [
{
"gracePeriodSeconds": 120,
"intervalSeconds": 15,
"maxConsecutiveFailures": 10,
"path": "/",
"portIndex": 0,
"protocol": "HTTP",
"timeoutSeconds": 5
}
],
"container": {
"type": "DOCKER",
"docker": {
"image": "capgemini/mesos-ui:standalone-latest",
"network": "BRIDGE",
"portMappings": [
{
"containerPort": 0,
"hostPort": 0,
"servicePort": 5000,
"protocol": "tcp"
}
]
}
}
}