Skip to content

Instantly share code, notes, and snippets.

@linben
Created January 19, 2016 23:08
Show Gist options
  • Save linben/a7c8deb5ae029b704ebc to your computer and use it in GitHub Desktop.
Save linben/a7c8deb5ae029b704ebc to your computer and use it in GitHub Desktop.
{
"id": "toggle",
"cmd": "sleep 9 && cd $MESOS_SANDBOX && python toggle.py 80",
"cpus": 0.05,
"mem": 16.0,
"disk": 0.0,
"ports": [9002],
"instances": 3,
"uris":[
"http://downloads.mesosphere.com/misc/toggle.tgz"
],
"container": {
"type": "DOCKER",
"docker": {
"image": "python:2",
"network": "BRIDGE",
"portMappings": [
{ "hostPort": 0, "containerPort": 80, "servicePort": 3000 }
]
}
},
"healthChecks": [
{
"protocol": "HTTP",
"path": "/",
"portIndex": 0,
"timeoutSeconds": 10,
"gracePeriodSeconds": 10,
"intervalSeconds": 2,
"maxConsecutiveFailures": 5
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment