By default, Neutron QoS is disabled. You can enable Neutron QoS before or after deploying an OpenStack environment.
To enable Neutron Quality of Service
Log in to the Salt Master node.
Open the cluster.<cluster-name>.openstack.init.yml
file for editing.
Set the neutron_qos_enabled
parameter to True
.
parameters:
_param:
neutron_enable_qos: True
...
This turns on the QoS functionality. Depending on the deployment,
the command uploads extensions for the openvswitch
or/and
sriovnicswitch
agents.
Re-run Salt configuration on the Salt Master node:
salt -C 'I@neutron:server' state.sls neutron
salt -C 'I@neutron:gateway' state.sls neutron
salt -C 'I@neutron:compute' state.sls neutron
Proceed to Create a QoS policy.