Update manuals to use new `use_neutron` option

Starting in Mitaka there is a unified use_neutron option that enables
both the network api and security group api. This is prefered over the
class based options which are now deprecated.

Change-Id: I3b682a1482f406e16cefa05b3a25d5cb2798097f
This commit is contained in:
Sean Dague 2016-03-08 08:01:50 -05:00
parent d46d450b9e
commit cfd1852786
5 changed files with 7 additions and 13 deletions

View File

@ -165,8 +165,8 @@ happen, you must configure the following items in the ``nova.conf`` file
* - Attribute name
- Required
* - ``[DEFAULT] network_api_class``
- Modify from the default to ``nova.network.neutronv2.api.API``, to
* - ``[DEFAULT] use_neutron``
- Modify from the default to ``True`` to
indicate that Networking should be used rather than the traditional
nova-network networking model.
* - ``[neutron] url``
@ -210,9 +210,6 @@ values in the ``nova.conf`` file:
| | so that nova-compute does not perform |
| | iptables-based filtering itself. |
+-----------------------+-----------------------------------------------------+
| ``security_group_api``| Update to ``neutron``, so that all security group |
| | requests are proxied to the Network Service. |
+-----------------------+-----------------------------------------------------+
Configure metadata
~~~~~~~~~~~~~~~~~~
@ -266,8 +263,7 @@ running Compute and Networking with an IP address of 192.168.1.2:
.. code-block:: ini
[DEFAULT]
security_group_api=neutron
network_api_class=nova.network.neutronv2.api.API
use_neutron = True
firewall_driver=nova.virt.firewall.NoopFirewallDriver
[neutron]

View File

@ -111,7 +111,7 @@ Configuration
.. code-block:: ini
[DEFAULT]
network_api_class=nova.network.neutronv2.api.API
use_neutron=True
firewall_driver=nova.virt.firewall.NoopFirewallDriver
[neutron]

View File

@ -358,7 +358,7 @@ OpenStack on Hyper-V. Below is a sample ``nova.conf`` for Windows:
logfile = nova-compute.log
instance_usage_audit = true
instance_usage_audit_period = hour
network_api_class = nova.network.neutronv2.api.API
use_neutron = True
[neutron]
url = http://IP_ADDRESS:9696
auth_strategy = keystone

View File

@ -149,8 +149,7 @@ Install and configure components
[DEFAULT]
...
network_api_class = nova.network.neutronv2.api.API
security_group_api = neutron
use_neutron = True
firewall_driver = nova.virt.firewall.NoopFirewallDriver
.. note::

View File

@ -311,8 +311,7 @@ Install and configure components
[DEFAULT]
...
network_api_class = nova.network.neutronv2.api.API
security_group_api = neutron
use_neutron = True
firewall_driver = nova.virt.firewall.NoopFirewallDriver
.. note::