From 6dc090a4c8e0da753b6755765cc71db8e8312674 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Tue, 14 Nov 2017 13:19:03 -0600 Subject: [PATCH] update group_vars/osds.yml.sample for the new lvm_volumes examples Signed-off-by: Andrew Schoen --- group_vars/osds.yml.sample | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/group_vars/osds.yml.sample b/group_vars/osds.yml.sample index ee1845eb2..eabdb51ec 100644 --- a/group_vars/osds.yml.sample +++ b/group_vars/osds.yml.sample @@ -203,9 +203,9 @@ dummy: # # Filestore: Each dictionary must contain a data, journal and vg_name key. Any # logical volume or logical group used must be a name and not a path. data -# must be a logical volume. journal can be either a lv, device or partition. +# can be a logical volume, device or partition. journal can be either a lv or partition. # You can not use the same journal for many data lvs. -# data_vg must be the volume group name of the data lv +# data_vg must be the volume group name of the data lv, only applicable when data is an lv. # journal_vg is optional and must be the volume group name of the journal lv, if applicable. # For example: # lvm_volumes: @@ -214,11 +214,15 @@ dummy: # journal: journal-lv1 # journal_vg: vg2 # - data: data-lv2 -# journal: /dev/sda +# journal: /dev/sda1 # data_vg: vg1 # - data: data-lv3 # journal: /dev/sdb1 # data_vg: vg2 +# - data: /dev/sda +# journal: /dev/sdb1 +# - data: /dev/sda1 +# journal: /dev/sdb1 # # Bluestore: Each dictionary must contain at least data. When defining wal or # db, it must have both the lv name and vg group (db and wal are not required). @@ -240,6 +244,8 @@ dummy: # db_vg: vg3 # - data: data-lv4 # data_vg: vg4 +# - data: /dev/sda +# - data: /dev/sdb1 #lvm_volumes: []