]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
vagrant: use group_vars for ceph pkg source 1044/head
authorPatrick Donnelly <pdonnell@redhat.com>
Fri, 21 Oct 2016 14:46:11 +0000 (10:46 -0400)
committerPatrick Donnelly <pdonnell@redhat.com>
Fri, 21 Oct 2016 14:46:11 +0000 (10:46 -0400)
This was a holdout from the Linode merge that shouldn't have been
included. The right way to set the installation source is through
group_vars.

Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
Vagrantfile
vagrant_variables.yml.linode
vagrant_variables.yml.sample

index 9454eef72b9dbf3b5a4cae875861844914c0c9b1..8bbc3a675ddb4b18b625d2c80c9378bf2ae71008 100644 (file)
@@ -64,14 +64,6 @@ ansible_provision = proc do |ansible|
       journal_size: 100,
       public_network: "#{PUBLIC_SUBNET}.0/24",
   }
-  if settings['ceph_install_source'] == 'dev' then
-    ansible.extra_vars['ceph_dev'] = true
-    if settings['ceph_install_branch'] then
-      ansible.extra_vars['ceph_dev_branch'] = settings['ceph_install_branch']
-    end
-  else
-    ansible.extra_vars['ceph_stable'] = true
-  end
 
   # In a production deployment, these should be secret
   if DOCKER then
index b1f715f3b5d429ed699f18a3fb73c0c2ba60c28f..78d1e33538cdc227e5cbb9f6e2c1f8645b7e6bd6 100644 (file)
@@ -32,11 +32,6 @@ iscsi_gw_vms: 0
 # Deploy RESTAPI on each of the Monitors
 restapi: true
 
-# INSTALL SOURCE OF CEPH
-# valid values are 'stable' and 'dev'
-ceph_install_source: 'dev'
-ceph_install_branch: 'master'
-
 # The sync directory changes based on vagrant box
 # Set to /home/vagrant/sync for Centos/7, /home/{ user }/vagrant for openstack and defaults to /vagrant
 # vagrant_sync_dir: /home/vagrant/sync
index 7f46c25642f80b573171f025489ff787207bcded..11bdc8cc911af91e423ec5bb61a86aede3012653 100644 (file)
@@ -16,10 +16,6 @@ iscsi_gw_vms: 0
 # Deploy RESTAPI on each of the Monitors
 restapi: true
 
-# INSTALL SOURCE OF CEPH
-# valid values are 'stable' and 'dev'
-ceph_install_source: stable
-
 # SUBNETS TO USE FOR THE VMS
 public_subnet: 192.168.42
 cluster_subnet: 192.168.43