How to install octavia when using neutron-openvswitch ?
I follow this guide https://docs.openstack.org/octavia/latest/install/install-ubuntu.html (https://docs.openstack.org/octavia/la...)
But when come to this:
$ sudo ip link add o-hm0 type veth peer name o-bhm0
$ NETID=$(openstack network show lb-mgmt-net -c id -f value)
$ BRNAME=brq$(echo $NETID|cut -c 1-11)
$ sudo brctl addif $BRNAME o-bhm0
$ sudo ip link set o-bhm0 up
Well, when I'm using openvswitch for neutron, there is no brq
to add interface to add?
So how to deal with this problems?