You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by se...@apache.org on 2016/06/28 19:51:34 UTC

aurora git commit: Add announce and enable_hooks to Job Schema table

Repository: aurora
Updated Branches:
  refs/heads/master 73dd2a867 -> 499b11bde


Add announce and enable_hooks to Job Schema table

Reviewed at https://reviews.apache.org/r/49330/


Project: http://git-wip-us.apache.org/repos/asf/aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/499b11bd
Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/499b11bd
Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/499b11bd

Branch: refs/heads/master
Commit: 499b11bde69d030f27b43b29fa427d53f4f81ac2
Parents: 73dd2a8
Author: Benjamin Staffin <be...@gmail.com>
Authored: Tue Jun 28 21:51:17 2016 +0200
Committer: Stephan Erb <se...@apache.org>
Committed: Tue Jun 28 21:51:17 2016 +0200

----------------------------------------------------------------------
 docs/reference/configuration.md | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aurora/blob/499b11bd/docs/reference/configuration.md
----------------------------------------------------------------------
diff --git a/docs/reference/configuration.md b/docs/reference/configuration.md
index c56ace0..c4b1d38 100644
--- a/docs/reference/configuration.md
+++ b/docs/reference/configuration.md
@@ -354,6 +354,8 @@ Job Schema
   ```container``` | Choice of ```Container```, ```Docker``` or ```Mesos``` object | An optional container to run all processes inside of.
   ```lifecycle``` | ```LifecycleConfig``` object | An optional task lifecycle configuration that dictates commands to be executed on startup/teardown.  HTTP lifecycle is enabled by default if the "health" port is requested.  See [LifecycleConfig Objects](#lifecycleconfig-objects) for more information.
   ```tier``` | String | Task tier type. The default scheduler tier configuration allows for 3 tiers: `revocable`, `preemptible`, and `preferred`. The `revocable` tier requires the task to run with Mesos revocable resources. Setting the task's tier to `preemptible` allows for the possibility of that task being preempted by other tasks when cluster is running low on resources. The `preferred` tier prevents the task from using revocable resources and from being preempted. Since it is possible that a cluster is configured with a custom tier configuration, users should consult their cluster administrator to be informed of the tiers supported by the cluster. Attempts to schedule jobs with an unsupported tier will be rejected by the scheduler.
+  ```announce``` | ```Announcer``` object | Optionally enable Zookeeper ServerSet announcements. See [Announcer Objects] for more information.
+  ```enable_hooks``` | Boolean | Whether to enable [Client Hooks](client-hooks.md) for this job. (Default: False)
 
 
 ### UpdateConfig Objects