Moved to 192.168 range to avoid hp vpn conflict

This commit is contained in:
Tim Kuhlman 2014-02-20 11:56:32 -07:00
parent 2ab15d68b9
commit a0b6bc0985
2 changed files with 3 additions and 3 deletions

View File

@ -31,5 +31,5 @@ vagrant up
- This will bring the vms up
- Your home dir is synced to the vm in /vagrant_home on each vm
- Vms created
- `kafka` at `10.10.10.10`
- Run `vagrant help` for more info
- `kafka` at `192.168.10.10`
- Run `vagrant help` for more info

2
Vagrantfile vendored
View File

@ -12,7 +12,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# VM specific settings
config.vm.define "kafka" do |kafka|
kafka.vm.network :private_network, ip: "10.10.10.10"
kafka.vm.network :private_network, ip: "192.168.10.10"
kafka.vm.provision :chef_solo do |chef|
chef.roles_path = "roles"
chef.data_bags_path = "data_bags"