mirror of https://github.com/ceph/ceph-ansible.git
Vagrantfile: remove useless default values
Those default values are useless and might cause issues. - `osd_scenario` should be mandatory anyway. - `pool_default_size` is not used anymore (this has been refactored recently. Closes: #3468 Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>pull/3470/head
parent
6a79870d62
commit
c7a929b2dc
|
@ -78,11 +78,9 @@ ansible_provision = proc do |ansible|
|
||||||
else
|
else
|
||||||
ansible.extra_vars = ansible.extra_vars.merge({
|
ansible.extra_vars = ansible.extra_vars.merge({
|
||||||
devices: settings['disks'],
|
devices: settings['disks'],
|
||||||
osd_scenario: 'collocated',
|
|
||||||
monitor_interface: ETH,
|
monitor_interface: ETH,
|
||||||
radosgw_interface: ETH,
|
radosgw_interface: ETH,
|
||||||
os_tuning_params: settings['os_tuning_params'],
|
os_tuning_params: settings['os_tuning_params'],
|
||||||
pool_default_size: '2',
|
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue