[admin-guide]Fix deprecated auth options

Change-Id: Ic754b1dc34bfc598e51e85c5497556b175c841cf
Closes-Bug: #1605157
This commit is contained in:
maoshuai 2016-07-23 16:09:52 +08:00 committed by Anne Gentle
parent 27f05f7396
commit 4eff416702

@ -159,7 +159,7 @@ services communicate with Networking using the standard API. For this to
happen, you must configure the following items in the ``nova.conf`` file
(used by each ``nova-compute`` and ``nova-api`` instance).
.. list-table:: **nova.conf API and credential settings**
.. list-table:: **nova.conf API and credential settings prior to Mitaka**
:widths: 20 50
:header-rows: 1
@ -175,7 +175,7 @@ happen, you must configure the following items in the ``nova.conf`` file
* - ``[neutron] auth_strategy``
- Keep the default ``keystone`` value for all production deployments.
* - ``[neutron] admin_project_name``
- Update to the name of the service project created in the above section on
- Update to the name of the service tenant created in the above section on
Identity configuration.
* - ``[neutron] admin_username``
- Update to the name of the user created in the above section on Identity
@ -188,6 +188,35 @@ happen, you must configure the following items in the ``nova.conf`` file
(keystone) admin API server IP and port value, and not the Identity
service API IP and port.
.. list-table:: **nova.conf API and credential settings in Newton**
:widths: 20 50
:header-rows: 1
* - Attribute name
- Required
* - ``[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``
- Update to the host name/IP and port of the neutron-server instance
for this deployment.
* - ``[neutron] auth_strategy``
- Keep the default ``keystone`` value for all production deployments.
* - ``[neutron] project_name``
- Update to the name of the service tenant created in the above section on
Identity configuration.
* - ``[neutron] username``
- Update to the name of the user created in the above section on Identity
configuration.
* - ``[neutron] password``
- Update to the password of the user created in the above section on
Identity configuration.
* - ``[neutron] auth_url``
- Update to the Identity server IP and port. This is the Identity
(keystone) admin API server IP and port value, and not the Identity
service API IP and port.
Configure security groups
~~~~~~~~~~~~~~~~~~~~~~~~~