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>
(cherry picked from commit c7a929b2dc
)
pull/3519/head
parent
e57e2d98a1
commit
44afe16568
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue