Repository: mesos Updated Branches: refs/heads/master b0d1c6ea0 -> 11a2311f7
Added mesos version info to dynamic reservation endpoints documentation. Review: https://reviews.apache.org/r/38640 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/11a2311f Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/11a2311f Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/11a2311f Branch: refs/heads/master Commit: 11a2311f7051b8bb2ca379b9eaf5f9e27595d6bc Parents: b0d1c6e Author: Anand Mazumdar <[email protected]> Authored: Tue Sep 22 15:45:56 2015 -0700 Committer: Michael Park <[email protected]> Committed: Tue Sep 22 18:09:25 2015 -0700 ---------------------------------------------------------------------- docs/reservation.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/11a2311f/docs/reservation.md ---------------------------------------------------------------------- diff --git a/docs/reservation.md b/docs/reservation.md index 71c2cbd..69bde76 100644 --- a/docs/reservation.md +++ b/docs/reservation.md @@ -217,7 +217,8 @@ which we specify with the resources to be unreserved. The unreserved resources may now be offered to other frameworks. -### `/reserve` (_Coming Soon_) +### `/reserve` (since 0.25.0) + Suppose we want to reserve 8 CPUs and 4096 MB of RAM for the `ads` role on a slave with id=`<slave_id>`. We send an HTTP POST request to the `/reserve` @@ -256,7 +257,8 @@ The user receives one of the following HTTP responses: * `409 Conflict`: Insufficient resources to satisfy the reserve operation. -### `/unreserve` (_Coming Soon_) +### `/unreserve` (since 0.25.0) + Suppose we want to unreserve the resources that we dynamically reserved above. We can send an HTTP POST request to the `/unreserve` HTTP endpoint like so:
