256464aea6
Adds VPNaaS support for OVN. Add a new stand-alone VPN agent to support OVN+VPN. Add OVN-specific service and device drivers that support this new VPN agent. This will have no impact on the existing VPN solution for ML2/OVS, the existing L3 agent and its VPN extension will still work. Add a new VPN agent scheduler that will schedule VPN services to VPN agents on a per-router basis. Add two new database tables: vpn_ext_gws (to store extra port IDs) and routervpnagentbindings (to store VPN agent ID per router). More details see spec (neutron-specs/specs/xena/vpnaas-ovn.rst). This work is based on work of MingShuan Xian (xianms@cn.ibm.com), see https://bugs.launchpad.net/networking-ovn/+bug/1586253 Depends-On: https://review.opendev.org/c/openstack/neutron/+/847005 Depends-On: https://review.opendev.org/c/openstack/neutron-tempest-plugin/+/847007 Closes-Bug: #1905391 Change-Id: I632f86762d63edbfe225727db11ea21bbb1ffc25
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
[[local|localrc]]
|
|
DATABASE_PASSWORD=password
|
|
RABBIT_PASSWORD=password
|
|
SERVICE_PASSWORD=password
|
|
SERVICE_TOKEN=password
|
|
ADMIN_PASSWORD=password
|
|
|
|
Q_AGENT=ovn
|
|
Q_ML2_PLUGIN_MECHANISM_DRIVERS=ovn,logger
|
|
Q_ML2_PLUGIN_TYPE_DRIVERS=local,flat,vlan,geneve
|
|
Q_ML2_TENANT_NETWORK_TYPE=geneve
|
|
|
|
LOGFILE="/opt/stack/logs/devstacklog.txt"
|
|
|
|
enable_service ovn-northd
|
|
enable_service ovn-controller
|
|
enable_service q-ovn-metadata-agent
|
|
enable_service q-ovn-vpn-agent
|
|
enable_service q-svc
|
|
enable_service q-log
|
|
|
|
# Disable Neutron agents not used with OVN.
|
|
disable_service q-agt
|
|
disable_service q-l3
|
|
disable_service q-dhcp
|
|
disable_service q-meta
|
|
|
|
enable_plugin neutron https://opendev.org/openstack/neutron
|
|
enable_plugin neutron-tempest-plugin https://opendev.org/openstack/neutron-tempest-plugin.git
|
|
enable_plugin neutron-vpnaas https://opendev.org/openstack/neutron-vpnaas.git
|
|
|
|
# Horizon (the web UI) is enabled by default. You may want to disable
|
|
# it here to speed up DevStack a bit.
|
|
enable_service horizon
|
|
|
|
# disable_service cinder c-sch c-api c-vol c-bak
|
|
|
|
#new
|
|
# OVN_BUILD_MODULES=True
|
|
#new
|
|
# ENABLE_CHASSIS_AS_GW=True
|
|
|
|
# IPsec driver to use. Optional, defaults to strongswan.
|
|
IPSEC_PACKAGE="strongswan"
|