2014-03-04 02:08:51 +08:00
|
|
|
---
|
|
|
|
# Variables here are applicable to all host groups NOT roles
|
|
|
|
#
|
|
|
|
|
|
|
|
# Devices to be used as OSDs
|
2014-03-06 18:12:25 +08:00
|
|
|
# You can pre-provision disks that are not present yet.
|
|
|
|
# Ansible will just skip them. Newly added disk will be
|
|
|
|
# automatically configured during the next run.
|
|
|
|
#
|
2014-03-04 02:08:51 +08:00
|
|
|
|
2014-03-07 21:04:25 +08:00
|
|
|
|
|
|
|
# !! WARNING !!
|
|
|
|
#
|
|
|
|
# /!\ ENABLE ONLY ONE SCENARIO AT A TIME /!\
|
|
|
|
#
|
|
|
|
# !! WARNING !!
|
|
|
|
|
|
|
|
|
|
|
|
# Declare devices
|
|
|
|
# All the scenarii inherit from the following device declaration
|
|
|
|
#
|
2014-03-10 23:32:04 +08:00
|
|
|
devices: [ '/dev/sdd', '/dev/sde', '/dev/sdf', '/dev/sdg']
|
2014-03-07 21:04:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
# I. First scenario: journal and osd_data on the same device
|
|
|
|
# Use 'true' to enable this scenario
|
|
|
|
# This will collocate both journal and data on the same disk
|
2014-03-04 02:08:51 +08:00
|
|
|
# creating a partition at the beginning of the device
|
|
|
|
#
|
2014-03-07 21:04:25 +08:00
|
|
|
journal_collocation: true
|
|
|
|
|
|
|
|
|
|
|
|
# II. Second scenario: single journal device for N OSDs
|
|
|
|
# Use 'true' to enable this scenario
|
|
|
|
#
|
|
|
|
raw_journal: false
|
|
|
|
raw_journal_device: /dev/sdb
|
|
|
|
|
|
|
|
|
|
|
|
# III. Third scenario: N journal devices for N OSDs
|
|
|
|
# Use 'true' to enable this scenario
|
|
|
|
#
|
|
|
|
# In the following example:
|
|
|
|
# * sdd and sde will get sdb as a journal
|
|
|
|
# * sdf and sdg will get sdc as a journal
|
|
|
|
# While starting you have 2 options:
|
|
|
|
# 1. Pre-allocate all the devices
|
|
|
|
# 2. Progressively add new devices
|
|
|
|
|
|
|
|
raw_multi_journal: false
|
2014-03-10 23:32:04 +08:00
|
|
|
raw_journal_devices: [ '/dev/sdb', '/dev/sdb', '/dev/sdc', '/dev/sdc' ]
|