-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp-marathon.json
50 lines (50 loc) · 964 Bytes
/
app-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
{
"env": {
"JAVA_OPTS": "-Xms256m -Xmx256m"
},
"id": "/mvn-app",
"backoffFactor": 1.15,
"backoffSeconds": 1,
"container": {
"portMappings": [
{
"containerPort": 8080,
"hostPort": 8058,
"protocol": "tcp",
"servicePort": 10004
}
],
"type": "DOCKER",
"volumes": [],
"docker": {
"image": "santoshm93/mavenwebapp",
"forcePullImage": false,
"privileged": false,
"parameters": []
}
},
"cpus": 0.2,
"disk": 500,
"instances": 1,
"maxLaunchDelaySeconds": 3600,
"mem": 256,
"gpus": 0,
"networks": [
{
"mode": "container/bridge"
}
],
"requirePorts": false,
"upgradeStrategy": {
"maximumOverCapacity": 1,
"minimumHealthCapacity": 1
},
"killSelection": "YOUNGEST_FIRST",
"unreachableStrategy": {
"inactiveAfterSeconds": 0,
"expungeAfterSeconds": 0
},
"healthChecks": [],
"fetch": [],
"constraints": []
}