]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
Allow RGW and client VMs together 535/head
authorDaniel Gryniewicz <dang@redhat.com>
Thu, 11 Feb 2016 20:16:13 +0000 (15:16 -0500)
committerDaniel Gryniewicz <dang@redhat.com>
Thu, 11 Feb 2016 20:16:13 +0000 (15:16 -0500)
RGW and Client VMs were sharing a network range, causing vagrant
failure.  Bump the RGW range to the next value.

Vagrantfile

index d7d021d9e67ebca16c0ffec80c983412d38d6855..7d4f81739f4bfb9ac4ef5d3d4cd8996cce6c5f48 100644 (file)
@@ -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|