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.
This cherry-pick closes related bug in stable/queens
for linuxbridge scenario job.
In master branch there is no this problem in linuxbridge
scenario job as fip_qos L3 extension is already properly
configured and QoS for Floating IPs works properly.
Partially-Implements blueprint: floating-ip-rate-limit
Related-Bug: #1758033
Change-Id: Ibef48e7842a276fe77c901403d67760871f2b7e0
(cherry picked from commit 6e50a77fc7)
25 lines
469 B
Plaintext
25 lines
469 B
Plaintext
function configure_qos_service_plugin {
|
|
neutron_service_plugin_class_add "qos"
|
|
}
|
|
|
|
|
|
function configure_qos_core_plugin {
|
|
configure_qos_$NEUTRON_CORE_PLUGIN
|
|
}
|
|
|
|
|
|
function configure_qos_l2_agent {
|
|
plugin_agent_add_l2_agent_extension "qos"
|
|
}
|
|
|
|
|
|
function configure_qos {
|
|
configure_qos_service_plugin
|
|
configure_qos_core_plugin
|
|
configure_qos_l2_agent
|
|
}
|
|
|
|
function configure_l3_agent_extension_fip_qos {
|
|
plugin_agent_add_l3_agent_extension "fip_qos"
|
|
}
|