From: Daniel Gryniewicz Date: Thu, 11 Feb 2016 20:16:13 +0000 (-0500) Subject: Allow RGW and client VMs together X-Git-Tag: v1.0.0~39^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5c52c8070bb8c8eb868530182fb1394a809bc825;p=ceph-ansible.git Allow RGW and client VMs together RGW and Client VMs were sharing a network range, causing vagrant failure. Bump the RGW range to the next value. --- diff --git a/Vagrantfile b/Vagrantfile index d7d021d9e..7d4f81739 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -108,7 +108,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| (0..NRGWS - 1).each do |i| config.vm.define "rgw#{i}" do |rgw| rgw.vm.hostname = "ceph-rgw#{i}" - rgw.vm.network :private_network, ip: "#{SUBNET}.4#{i}" + rgw.vm.network :private_network, ip: "#{SUBNET}.5#{i}" # Virtualbox rgw.vm.provider :virtualbox do |vb|