diff --git a/dev/vagrant/bootstrap.sh b/dev/vagrant/bootstrap.sh index e4a982a6413e1bbecad5d60855918083fc37a355..70d129de4d21a516a9f3e6ffe6fdd704b19513a0 100644 --- a/dev/vagrant/bootstrap.sh +++ b/dev/vagrant/bootstrap.sh @@ -154,6 +154,8 @@ function configure_kolla { # Set network interfaces sed -i -r "s,^[# ]*network_interface:.+$,network_interface: \"eth1\"," /etc/kolla/globals.yml sed -i -r "s,^[# ]*neutron_external_interface:.+$,neutron_external_interface: \"eth2\"," /etc/kolla/globals.yml + # Set VIP address to be on the vagrant private network + sed -i -r "s,^[# ]*kolla_internal_vip_address:.+$,kolla_internal_vip_address: \"172.28.128.254\"," /etc/kolla/globals.yml } # Configure the operator node and install some additional packages. diff --git a/doc/vagrant-dev-env.rst b/doc/vagrant-dev-env.rst index 53726e4c33ef1e855ee86a6376b9701db410560e..f77b8b81f95989e4299d5729647f53dc68811073 100644 --- a/doc/vagrant-dev-env.rst +++ b/doc/vagrant-dev-env.rst @@ -141,7 +141,7 @@ Validate OpenStack is operational:: source /etc/kolla/admin-openrc.sh openstack user list -Or navigate to http://10.10.10.254/ with a web browser. +Or navigate to http://172.28.128.254/ with a web browser. Further Reading ===============