Repository: mesos Updated Branches: refs/heads/master 48e9542c8 -> 53480e907
Updated documentation for `d_type` check regarding `xfs` on `overlay`. Review: https://reviews.apache.org/r/65104/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/53480e90 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/53480e90 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/53480e90 Branch: refs/heads/master Commit: 53480e907d3e7ae888844d23c311b8fd2fee875f Parents: 48e9542 Author: Meng Zhu <[email protected]> Authored: Fri Jan 12 16:20:26 2018 -0800 Committer: Gilbert Song <[email protected]> Committed: Fri Jan 12 16:20:26 2018 -0800 ---------------------------------------------------------------------- docs/container-image.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/53480e90/docs/container-image.md ---------------------------------------------------------------------- diff --git a/docs/container-image.md b/docs/container-image.md index 1112bd7..7342f23 100644 --- a/docs/container-image.md +++ b/docs/container-image.md @@ -304,11 +304,15 @@ using the following logic table: | Backend | Suggested on | Disabled on | +---------+--------------+------------------------------------------+ | aufs | ext4 xfs | btrfs aufs eCryptfs | - | overlay | ext4 xfs | btrfs aufs overlay overlay2 zfs eCryptfs | + | overlay | ext4 xfs* | btrfs aufs overlay overlay2 zfs eCryptfs | | bind | | N/A(`--sandbox_directory' must exist) | | copy | | N/A | +---------+--------------+------------------------------------------+ +NOTE: `xfs` support on `overlay` is enabled only when `d_type=true`. Use +`xfs_info` to verify that the `xfs` ftype option is set to 1. To format +an xfs filesystem for `overlay`, use the flag `-n ftype=1` with `mkfs.xfs`. + The provisioner backend can be specified through the agent flag `--image_provisioner_backend`. If not set, Mesos will select the best backend automatically for the users/operators. The selection logic is
