update docker openstack vim

This commit is contained in:
light jiang
2018-12-27 15:39:57 +08:00
parent 9aed47964e
commit e45e80c419
5 changed files with 53 additions and 46 deletions
+7
View File
@@ -0,0 +1,7 @@
# deploy with docker
```bash
docker run -dit --privileged --cap-add=ALL --network=host --name=controller -h controller -v /lib/modules:/lib/modules openstack_base:rocky_ovs
docker run -dit --privileged --cap-add=ALL --network=host --name=compute -h compute -v /lib/modules:/lib/modules openstack_compute:rocky_ovs
```
+21
View File
@@ -0,0 +1,21 @@
# open vswitch
## install
```bash
git clone https://github.com/openvswitch/ovs.git
cd ovs
git checkout v2.7.0
sudo apt-get install git autoconf automake libtool openssl libssl-dev make python-six -y
./boot.sh
./configure
make
sudo make install
sudo modprobe openvswitch
```