Skip to content
Snippets Groups Projects
Commit 7f447eb3 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Make Neutron QoS service plugin configurable"

parents 330d925c a7f93b09
No related branches found
No related tags found
No related merge requests found
...@@ -207,6 +207,7 @@ enable_mistral: "no" ...@@ -207,6 +207,7 @@ enable_mistral: "no"
enable_mongodb: "no" enable_mongodb: "no"
enable_murano: "no" enable_murano: "no"
enable_neutron_lbaas: "no" enable_neutron_lbaas: "no"
enable_neutron_qos: "no"
enable_swift: "no" enable_swift: "no"
ironic_keystone_user: "ironic" ironic_keystone_user: "ironic"
......
...@@ -15,6 +15,10 @@ mechanism_drivers = openvswitch,l2population ...@@ -15,6 +15,10 @@ mechanism_drivers = openvswitch,l2population
mechanism_drivers = linuxbridge,l2population mechanism_drivers = linuxbridge,l2population
{% endif %} {% endif %}
{% if enable_neutron_qos | bool %}
extension_drivers = qos
{% endif %}
[ml2_type_vlan] [ml2_type_vlan]
{% if enable_ironic | bool %} {% if enable_ironic | bool %}
network_vlan_ranges = physnet1 network_vlan_ranges = physnet1
......
...@@ -32,7 +32,7 @@ host = {{ ansible_hostname }}_{{ item }} ...@@ -32,7 +32,7 @@ host = {{ ansible_hostname }}_{{ item }}
allow_overlapping_ips = true allow_overlapping_ips = true
core_plugin = ml2 core_plugin = ml2
service_plugins = router{% if enable_neutron_lbaas | bool %},neutron_lbaas.services.loadbalancer.plugin.LoadBalancerPluginv2{% endif %} service_plugins = router{% if enable_neutron_lbaas | bool %},neutron_lbaas.services.loadbalancer.plugin.LoadBalancerPluginv2{% endif %}{% if enable_neutron_qos | bool %},qos{% endif %}
{% if enable_neutron_lbaas | bool %} {% if enable_neutron_lbaas | bool %}
[service_providers] [service_providers]
......
...@@ -120,6 +120,7 @@ neutron_external_interface: "eth1" ...@@ -120,6 +120,7 @@ neutron_external_interface: "eth1"
#enable_mongodb: "no" #enable_mongodb: "no"
#enable_murano: "no" #enable_murano: "no"
#enable_neutron_lbaas: "no" #enable_neutron_lbaas: "no"
#enable_neutron_qos: "no"
#enable_swift: "no" #enable_swift: "no"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment