From 4e8bd619dda87c256ff6a06287de9d7c0f6c0dff Mon Sep 17 00:00:00 2001 From: zejian Zhuang Date: Thu, 27 Apr 2017 15:43:06 +0800 Subject: [PATCH] Fix a typo and complement doc in ceph-guide.rst Change-Id: Ied4f0b5e98ae3825d71fdc7c4b499914a1524bc8 Closes-Bug: #1686274 --- doc/ceph-guide.rst | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/doc/ceph-guide.rst b/doc/ceph-guide.rst index 48dbd20597..f7e0d9c79c 100644 --- a/doc/ceph-guide.rst +++ b/doc/ceph-guide.rst @@ -44,15 +44,19 @@ usage with Kolla. Sector size (logical/physical): 512B/512B Partition Table: gpt Number Start End Size File system Name Flags - 1 1049kB 10.7GB 10.7GB KOLLA_CEPH_OSD_BOOTSTRAP + 1 1049kB 10.7GB 10.7GB KOLLA_CEPH_OSD_BOOTSTRAP Using an external journal drive ------------------------------- -The steps documented above created a journal partition of 5 GByte -and a data partition with the remaining storage capacity on the same tagged -drive. +Create a journal partition of 5 GByte and a data partition with the remaining +storage capacity on the same tagged drive. + +:: + + parted /dev/sdb -s -- mklabel gpt mkpart KOLLA_CEPH_OSD_BOOTSTRAP_J 0 5GB + parted /dev/sdb -s -- mklabel gpt mkpart KOLLA_CEPH_OSD_BOOTSTRAP_D 5GB 100% It is a common practice to place the journal of an OSD on a separate journal drive. This section documents how to use an external journal drive.