In Mesos you are able to define restrictions for services according the resources (cpu, mem, disk, etc.). In Marathon this can look like:
{
"id": "/grafana/demo",
"instances": 1,
"cpus": 1.0,
"mem": 256,
"disk": 128,
"container": {
"type": "DOCKER",
"docker": {
"image": "grafana/grafana:latest",
...
}
}
}
Now my question: Does the docker image size of grafana/grafana:latest
count INTO the "disk": 128,
allocation?
Or is it "disk": 128,
+ size of the docker imagegrafana/grafana:latest
?