mirror of https://github.com/ceph/ceph-ansible.git
Fix some missing option declaration
Missing decleration and cosmetic. Signed-off-by: Sébastien Han <sebastien.han@enovance.com>pull/112/head
parent
dba501311a
commit
7e591a4cce
|
@ -36,12 +36,16 @@ journal_size: 100
|
||||||
pool_default_pg_num: 128
|
pool_default_pg_num: 128
|
||||||
pool_default_pgp_num: 128
|
pool_default_pgp_num: 128
|
||||||
pool_default_size: 2
|
pool_default_size: 2
|
||||||
|
pool_default_min_size: 1
|
||||||
cluster_network: 192.168.0.0/24
|
cluster_network: 192.168.0.0/24
|
||||||
public_network: 192.168.0.0/24
|
public_network: 192.168.0.0/24
|
||||||
osd_mkfs_type: xfs
|
osd_mkfs_type: xfs
|
||||||
osd_mkfs_options_xfs: -f -i size=2048
|
osd_mkfs_options_xfs: -f -i size=2048
|
||||||
osd_mount_options_xfs: noatime
|
osd_mount_options_xfs: noatime
|
||||||
osd_mon_heartbeat_interval: 30
|
osd_mon_heartbeat_interval: 30
|
||||||
|
# CRUSH
|
||||||
|
pool_default_crush_rule: 0
|
||||||
|
osd_crush_update_on_start: true
|
||||||
# Object backend
|
# Object backend
|
||||||
osd_objectstore: filestore
|
osd_objectstore: filestore
|
||||||
# Performance tuning
|
# Performance tuning
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
debug_paxos = 0/0
|
debug_paxos = 0/0
|
||||||
debug_rgw = 0/0
|
debug_rgw = 0/0
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
[mon]
|
[mon]
|
||||||
mon osd down out interval = {{ mon_osd_down_out_interval }}
|
mon osd down out interval = {{ mon_osd_down_out_interval }}
|
||||||
mon osd min down reporters = {{ mon_osd_min_down_reporters }}
|
mon osd min down reporters = {{ mon_osd_min_down_reporters }}
|
||||||
|
@ -90,6 +91,8 @@
|
||||||
osd max backfills = {{ osd_max_backfills }}
|
osd max backfills = {{ osd_max_backfills }}
|
||||||
osd recovery op priority = {{ osd_recovery_op_priority }}
|
osd recovery op priority = {{ osd_recovery_op_priority }}
|
||||||
osd objectstore = {{ osd_objectstore }}
|
osd objectstore = {{ osd_objectstore }}
|
||||||
|
osd crush update on start = {{ osd_crush_update_on_start }}
|
||||||
|
|
||||||
{% if mds %}
|
{% if mds %}
|
||||||
[mds]
|
[mds]
|
||||||
{% for host in groups['mdss'] %}
|
{% for host in groups['mdss'] %}
|
||||||
|
|
Loading…
Reference in New Issue