]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
resync groups_vars 1806/head
authorSébastien Han <seb@redhat.com>
Thu, 24 Aug 2017 11:40:36 +0000 (13:40 +0200)
committerSébastien Han <seb@redhat.com>
Thu, 24 Aug 2017 11:40:36 +0000 (13:40 +0200)
Signed-off-by: Sébastien Han <seb@redhat.com>
group_vars/osds.yml.sample

index 168a25d3f6353ac54feafb859bcda21877ba3e8d..55f66daa8cd5a391773e5e8c283709552e94d528 100644 (file)
@@ -199,15 +199,25 @@ dummy:
 # III. Use ceph-volume to create OSDs from logical volumes.
 # Use 'osd_scenario: lvm' to enable this scenario. Currently we only support dedicated journals
 # when using lvm, not collocated journals.
-# lvm_volumes is a dictionary whose key/value pair represent a data lv and a journal pair.
-# Any logical volume or logical group used must be a name and not a path.
-# Journals can be either a lv, device or partition. You can not use the same journal for many data lvs.
+# lvm_volumes is a list of dictionaries. 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. You can not use the same journal for many data lvs.
+# data_vg must be the volume group name of the data lv
+# journal_vg is optional and must be the volume group name of the journal lv, if applicable
 # For example:
 # lvm_volumes:
-#   data-lv1: journal-lv1
-#   data-lv2: /dev/sda
-#   data:lv3: /dev/sdb1
-#lvm_volumes: {}
+#   - data: data-lv1
+#     data_vg: vg1
+#     journal: journal-lv1
+#     journal_vg: vg2
+#   - data: data-lv2
+#     journal: /dev/sda
+#     data_vg: vg1
+#   - data: data-lv3
+#     journal: /dev/sdb1
+#     data_vg: vg2
+#lvm_volumes: []
 
 
 ##########