summaryrefslogtreecommitdiffstats
path: root/src/vagrant/kubeadm_onap/openstack/bootstrap.sh
blob: 9978c815ae5db7ddc3fcc7a798acd42d4702920b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash
set -ex

sudo apt-get update -y
sudo apt-get install git -y
git clone https://github.com/openstack-dev/devstack
cd devstack; git checkout stable/ocata
sudo apt-get install openvswitch-switch -y
sudo ovs-vsctl add-br br-ex
inet=$(ip a | grep 'inet.*eth2' | cut -f6 -d' ')
sudo ip addr flush eth2
sudo ovs-vsctl add-port br-ex eth2
sudo ifconfig br-ex $inet up
echo "source /vagrant/openrc" >> $HOME/.bash_profile