2015-08-18 16:57:44 +02:00
|
|
|
function configure_qos_service_plugin {
|
2017-03-07 21:19:33 +00:00
|
|
|
neutron_service_plugin_class_add "qos"
|
2015-08-18 16:57:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function configure_qos_core_plugin {
|
2017-03-07 21:06:35 +00:00
|
|
|
configure_qos_$NEUTRON_CORE_PLUGIN
|
2015-08-18 16:57:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2018-02-23 14:00:08 +08:00
|
|
|
|
|
|
|
function configure_l3_agent_extension_fip_qos {
|
|
|
|
plugin_agent_add_l3_agent_extension "fip_qos"
|
|
|
|
}
|
2018-05-14 15:00:29 +08:00
|
|
|
|
|
|
|
function configure_l3_agent_extension_gateway_ip_qos {
|
|
|
|
plugin_agent_add_l3_agent_extension "gateway_ip_qos"
|
|
|
|
}
|