You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ji...@apache.org on 2017/09/18 19:04:58 UTC

[13/16] mesos git commit: Moved IPC namespace isolator doc to the isolators folder.

Moved IPC namespace isolator doc to the isolators folder.

Review: https://reviews.apache.org/r/62303


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

Branch: refs/heads/master
Commit: c201c51e2677b1bf23ef8ee4a5f81e6139dda083
Parents: 4bc48b6
Author: Jie Yu <yu...@gmail.com>
Authored: Wed Sep 13 12:24:59 2017 -0700
Committer: Jie Yu <yu...@gmail.com>
Committed: Mon Sep 18 12:04:38 2017 -0700

----------------------------------------------------------------------
 docs/isolators/namespaces-ipc.md | 15 +++++++++++++++
 docs/mesos-containerizer.md      |  9 ---------
 2 files changed, 15 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/c201c51e/docs/isolators/namespaces-ipc.md
----------------------------------------------------------------------
diff --git a/docs/isolators/namespaces-ipc.md b/docs/isolators/namespaces-ipc.md
new file mode 100644
index 0000000..e550e75
--- /dev/null
+++ b/docs/isolators/namespaces-ipc.md
@@ -0,0 +1,15 @@
+---
+title: Apache Mesos - IPC Namespace Isolator in Mesos Containerizer
+layout: documentation
+---
+
+# IPC Namespace Isolator in Mesos Containerizer
+
+The IPC Namespace isolator can be used on Linux to place tasks
+in a distinct IPC namespace. The benefit of this is that any
+[IPC objects](http://man7.org/linux/man-pages/man7/svipc.7.html) created
+in the container will be automatically removed when the container is
+destroyed.
+
+To enable the IPC namespace isolator, append `namespaces/ipc` to the
+`--isolation` flag when starting the agent.

http://git-wip-us.apache.org/repos/asf/mesos/blob/c201c51e/docs/mesos-containerizer.md
----------------------------------------------------------------------
diff --git a/docs/mesos-containerizer.md b/docs/mesos-containerizer.md
index 95cdac4..33c0183 100644
--- a/docs/mesos-containerizer.md
+++ b/docs/mesos-containerizer.md
@@ -13,15 +13,6 @@ can selectively enable different isolators.
 It also provides basic support for POSIX systems (e.g., OSX) but
 without any actual isolation, only resource usage reporting.
 
-### The `namespaces/ipc` Isolator
-
-The IPC Namespace isolator can be used on Linux to place tasks
-in a distinct IPC namespace. The benefit of this is that any
-[IPC objects](http://man7.org/linux/man-pages/man7/svipc.7.html) created
-in the container will be automatically removed when the container is
-destroyed.
-
-
 ### The `network/cni` Isolator
 
 This is described in a [separate document](cni.md).