Skip to content

Commit

Permalink
chore: change Vagrant IP address for vbox 6.1.28 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzej-stencel committed Apr 11, 2022
1 parent 44fd769 commit 19e23a9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ Vagrant.configure('2') do |config|
config.disksize.size = '50GB'
config.vm.box_check_update = false
config.vm.host_name = 'sumologic-kubernetes-fluentd'
config.vm.network :private_network, ip: "192.168.78.44"
# Vbox 6.1.28+ restricts host-only adapters to 192.168.56.0/21
# See: https://www.virtualbox.org/manual/ch06.html#network_hostonly
config.vm.network :private_network, ip: "192.168.56.44"

config.vm.provider 'virtualbox' do |vb|
vb.gui = false
Expand Down

0 comments on commit 19e23a9

Please sign in to comment.