Switch neutron-fwaas-v2-dsvm-tempest job to python 3

It also changes devstack plugin to set fwaas L3 agent extension in
"agent" section of config file. Previously it was set in "AGENT"
section and it looks that it makes the difference when running on
Python 3.

Change-Id: If177e682e00e38eeb75a7ad77cf5796a04fe831b
This commit is contained in:
Slawek Kaplonski 2019-06-22 14:04:12 +02:00
parent 1ad1f78568
commit 1569b84aa9
2 changed files with 2 additions and 1 deletions

View File

@ -54,4 +54,5 @@
devstack_services:
q-fwaas-v2: true
devstack_localrc:
USE_PYTHON3: true
NETWORK_API_EXTENSIONS: "agent,binding,dhcp_agent_scheduler,external-net,ext-gw-mode,extra_dhcp_opts,quotas,router,security-group,subnet_allocation,network-ip-availability,auto-allocated-topology,timestamp_core,tag,service-type,rbac-policies,standard-attr-description,pagination,sorting,project-id,fwaas_v2"

View File

@ -12,5 +12,5 @@ function plugin_agent_add_l3_agent_extension {
function configure_l3_agent {
iniset $Q_L3_CONF_FILE AGENT extensions "$L3_AGENT_EXTENSIONS"
iniset $Q_L3_CONF_FILE agent extensions "$L3_AGENT_EXTENSIONS"
}