From: Andrew Schoen Date: Thu, 20 Sep 2018 17:24:07 +0000 (-0500) Subject: ceph-defaults: add the block_db_size option X-Git-Tag: v3.2.0beta4~20 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=71ce539da5b59417e4f9a7d8d0c9eff773178ab0;p=ceph-ansible.git ceph-defaults: add the block_db_size option This is used in the lvm osd scenario for the 'lvm batch' subcommand of ceph-volume. Signed-off-by: Andrew Schoen --- diff --git a/group_vars/all.yml.sample b/group_vars/all.yml.sample index 5c5a7fd66..e6f95f4fa 100644 --- a/group_vars/all.yml.sample +++ b/group_vars/all.yml.sample @@ -364,6 +364,7 @@ dummy: #non_hci_safety_factor: 0.7 #osd_memory_target: 4000000000 #journal_size: 5120 # OSD journal size in MB +#block_db_size: -1 # block db size in bytes for the ceph-volume lvm batch. -1 means use the default of 'as big as possible'. #public_network: 0.0.0.0/0 #cluster_network: "{{ public_network | regex_replace(' ', '') }}" #osd_mkfs_type: xfs diff --git a/group_vars/rhcs.yml.sample b/group_vars/rhcs.yml.sample index b25d12c7e..cabb77279 100644 --- a/group_vars/rhcs.yml.sample +++ b/group_vars/rhcs.yml.sample @@ -364,6 +364,7 @@ ceph_rhcs_version: 3 #non_hci_safety_factor: 0.7 #osd_memory_target: 4000000000 #journal_size: 5120 # OSD journal size in MB +#block_db_size: -1 # block db size in bytes for the ceph-volume lvm batch. -1 means use the default of 'as big as possible'. #public_network: 0.0.0.0/0 #cluster_network: "{{ public_network | regex_replace(' ', '') }}" #osd_mkfs_type: xfs diff --git a/roles/ceph-defaults/defaults/main.yml b/roles/ceph-defaults/defaults/main.yml index 9a1905b04..511b2294b 100644 --- a/roles/ceph-defaults/defaults/main.yml +++ b/roles/ceph-defaults/defaults/main.yml @@ -356,6 +356,7 @@ hci_safety_factor: 0.2 non_hci_safety_factor: 0.7 osd_memory_target: 4000000000 journal_size: 5120 # OSD journal size in MB +block_db_size: -1 # block db size in bytes for the ceph-volume lvm batch. -1 means use the default of 'as big as possible'. public_network: 0.0.0.0/0 cluster_network: "{{ public_network | regex_replace(' ', '') }}" osd_mkfs_type: xfs