Update api_class in volume encryption section

In the config reference volume encryption section, the api_class
needs to reflect settings which support the Castellan key
manager with Barbican.

Change-Id: Id37e423006387b65ddb51b0320fda3c5d33b7421
Closes-Bug: #1639886
This commit is contained in:
Bruce Benjamin 2016-11-07 13:35:12 -05:00 committed by Alexandra Settle
parent 857e0c8fc5
commit 448841d8cf

View File

@ -23,7 +23,7 @@ Steps to update ``cinder-api`` servers:
.. code-block:: ini
api_class = cinder.key_manager.barbican.BarbicanKeyManager
api_class = castellan.key_manager.barbican_key_manager.BarbicanKeyManager
.. note::
@ -34,15 +34,15 @@ Steps to update ``cinder-api`` servers:
Update ``nova-compute`` servers:
#. Install the ``cryptsetup`` utility and the ``python-barbicanclient``
Python package.
#. Ensure the ``cryptsetup`` utility is installed, and install
the ``python-barbicanclient`` Python package.
#. Set up the Key Manager service by editing ``/etc/nova/nova.conf``:
.. code-block:: ini
[key_manager]
api_class = nova.key_manager.barbican.BarbicanKeyManager
api_class = castellan.key_manager.barbican_key_manager.BarbicanKeyManager
#. Restart ``nova-compute``.
@ -109,8 +109,10 @@ type, ``unencrypted``, is used.
.. code-block:: console
$ openstack volume create --size 1 'unencrypted volume'
#. Create an encrypted 1 GB test volume:
.. code-block:: console