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>
(cherry picked from commit c7a929b2dc)
pull/3519/head
Guillaume Abrioux 2019-01-02 14:46:54 +01:00 committed by Sébastien Han
parent e57e2d98a1
commit 44afe16568
1 changed files with 0 additions and 2 deletions

2
Vagrantfile vendored
View File

@ -83,11 +83,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