diff options
| author | Kevin Benton <kevin.benton@bigswitch.com> | 2013-06-04 17:47:59 -0700 |
|---|---|---|
| committer | Kevin Benton <kevin.benton@bigswitch.com> | 2013-06-09 10:40:01 -0700 |
| commit | 6caadd1c1badee8da046a42c796490d010e4e83f (patch) | |
| tree | 7fcd08757aed3a4d91763f4c8a578c1e2635dbd8 /etc/nova | |
| parent | 2effda29c8926b87a240801acc4d61c62df0954b (diff) | |
| download | nova-6caadd1c1badee8da046a42c796490d010e4e83f.tar.gz nova-6caadd1c1badee8da046a42c796490d010e4e83f.tar.xz nova-6caadd1c1badee8da046a42c796490d010e4e83f.zip | |
Adds support for the Indigo Virtual Switch (IVS)
Implements: blueprint ivs-vif-driver
Adds line to rootwrap config to allow call to ivs-ctl to control the Indigo switch.
Adds a new 'ivs' VIF type in network/model.py.
Adds support to the LibvirtGenericVIFDriver class for the IVS switch.
Adds functions to linux_net.py to create and delete IVS vif ports.
Adds unit tests to test the new IVS methods.
Change-Id: I65436b82f65374103644af8aba9dba14ba73f94c
Diffstat (limited to 'etc/nova')
| -rw-r--r-- | etc/nova/rootwrap.d/network.filters | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/etc/nova/rootwrap.d/network.filters b/etc/nova/rootwrap.d/network.filters index 02138cff4..9a607bf84 100644 --- a/etc/nova/rootwrap.d/network.filters +++ b/etc/nova/rootwrap.d/network.filters @@ -34,6 +34,11 @@ ovs-vsctl: CommandFilter, ovs-vsctl, root # nova/network/linux_net.py: 'ovs-ofctl', .... ovs-ofctl: CommandFilter, ovs-ofctl, root +# nova/virt/libvirt/vif.py: 'ivs-ctl', ... +# nova/virt/libvirt/vif.py: 'ivs-ctl', 'del-port', ... +# nova/network/linux_net.py: 'ivs-ctl', .... +ivs-ctl: CommandFilter, ivs-ctl, root + # nova/network/linux_net.py: 'ebtables', '-D' ... # nova/network/linux_net.py: 'ebtables', '-I' ... ebtables: CommandFilter, ebtables, root |
