Adds devstack configs to try to enable the L3 agent extension `fip_qos` by checking the API service extension router, agent and QoS. Once this L3 agent extension works during the devstack zuul job installation, we can continue to run the neutron-tempest-plugin tests for floating IP QoS. Partially-Implements blueprint: floating-ip-rate-limit Change-Id: Ibef48e7842a276fe77c901403d67760871f2b7e0changes/86/547286/6
parent
20760bcdf5
commit
6e50a77fc7
@ -0,0 +1,13 @@
|
||||
function plugin_agent_add_l3_agent_extension {
|
||||
local l3_agent_extension=$1
|
||||
if [[ -z "$L3_AGENT_EXTENSIONS" ]]; then
|
||||
L3_AGENT_EXTENSIONS=$l3_agent_extension
|
||||
elif [[ ! ,${L3_AGENT_EXTENSIONS}, =~ ,${l3_agent_extension}, ]]; then
|
||||
L3_AGENT_EXTENSIONS+=",$l3_agent_extension"
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
function configure_l3_agent {
|
||||
iniset $NEUTRON_L3_CONF agent extensions "$L3_AGENT_EXTENSIONS"
|
||||
}
|
Loading…
Reference in new issue