Skip to content

Commit

Permalink
Expanding example-config.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
hekaldama committed May 23, 2016
1 parent f5817bd commit d1a49d6
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions example-config.json
@@ -1,22 +1,26 @@
{
"runonce": {
"address": "routable-ip-address-to-localhost",
"master": "mesos-master:5050",
"principal": "optional-authentication-principal",
"secret_file": "/path/to/optional-secret-file"
"address": "localhost",
"port": 123,
"authentication_provider": "SAML",
"master": "123.123.123.123",
"task_count": 2,
"user": "username",
"principal": "principalname",
"secret_file": "secretfile"
},
"task": {
"id": "optional-id-of-task",
"name": "optional-name-of-task",
"id": "id-of-task",
"name": "name-of-task",
"docker": {
"image": "docker-image",
"cmd": "optional-command",
"force_pull": Boolean (optional),
"image": "alpine",
"cmd": "ls",
"force_pull": true,
"env": {
"SOME": "var"
"cow": "boy"
},
"cpus": Float,
"mem": Float
"cpus": 1.2,
"mem": 83.3
}
}
}

0 comments on commit d1a49d6

Please sign in to comment.