Skip to content

Instantly share code, notes, and snippets.

@bfs
Created May 16, 2015 00:57
Show Gist options
  • Save bfs/a3c52af86a331534e909 to your computer and use it in GitHub Desktop.
Save bfs/a3c52af86a331534e909 to your computer and use it in GitHub Desktop.
chronos on marathon config
{
"id": "chronos",
"container": {
"type": "DOCKER",
"docker": {
"image": "boritzio/docker-chronos",
"network": "HOST",
"parameters": [
{ "key": "env", "value": "MESOS_ZK=zk://machine1:2181,machine2:2181,machine3:2181/mesos" },
{ "key": "env", "value": "CHRONOS_ZK=machine1:2181,machine2:2181,machine3:2181" }
]
}
},
"instances": 3,
"cpus": 1,
"mem": 1024,
"ports": [4400],
"healthChecks": [
{
"protocol": "HTTP",
"portIndex": 0,
"path": "/",
"gracePeriodSeconds": 5,
"intervalSeconds": 20,
"maxConsecutiveFailures": 3
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment