blob: af9eb3d5b4c38dc88c2e4b371e2f4a4b031ad3d9 [file] [log] [blame]
Slawek Kaplonskif9a896c2021-10-27 16:50:11 +02001#!/bin/bash
2
3function configure_qos_service_plugin {
4 neutron_service_plugin_class_add "qos"
5}
6
7
8function configure_qos_core_plugin {
9 configure_qos_$NEUTRON_CORE_PLUGIN
10}
11
12
13function configure_qos_l2_agent {
14 plugin_agent_add_l2_agent_extension "qos"
15}
16
17
18function configure_qos {
19 configure_qos_service_plugin
20 configure_qos_core_plugin
21 configure_qos_l2_agent
22}
23
24function configure_l3_agent_extension_fip_qos {
25 plugin_agent_add_l3_agent_extension "fip_qos"
26}
27
28function configure_l3_agent_extension_gateway_ip_qos {
29 plugin_agent_add_l3_agent_extension "gateway_ip_qos"
30}