From: Sébastien Han Date: Mon, 7 Mar 2016 13:05:01 +0000 (+0100) Subject: vagrant: ability to configure installation source X-Git-Tag: v1.0.2~9^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F606%2Fhead;p=ceph-ansible.git vagrant: ability to configure installation source now with vagrant, you can either enable ceph_stable or ceph_dev depending on what you're looking to test. Signed-off-by: Sébastien Han --- diff --git a/Vagrantfile b/Vagrantfile index 73147fa5f..1363096a4 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -54,7 +54,7 @@ ansible_provision = proc do |ansible| } else ansible.extra_vars = { - ceph_stable: 'true', + "ceph_#{settings['ceph_install_source']}"=> 'true', journal_collocation: 'true', journal_size: 100, monitor_interface: ETH, diff --git a/vagrant_variables.yml.sample b/vagrant_variables.yml.sample index 6edb792c9..7a161b89e 100644 --- a/vagrant_variables.yml.sample +++ b/vagrant_variables.yml.sample @@ -10,6 +10,10 @@ mds_vms: 0 rgw_vms: 0 client_vms: 0 +# INSTALL SOURCE OF CEPH +# valid values are 'stable' and 'dev' +ceph_install_source: stable + # SUBNET TO USE FOR THE VMS subnet: 192.168.42