Merge "Flesh out the post-install verify doc"

This commit is contained in:
Zuul
2019-03-20 16:13:33 +00:00
committed by Gerrit Code Review
3 changed files with 69 additions and 11 deletions

View File

@@ -169,12 +169,6 @@ configuration settings not mentioned here.
.. note:: An alternative is to use the .. note:: An alternative is to use the
:oslo.config:option:`placement_database.sync_on_startup` option. :oslo.config:option:`placement_database.sync_on_startup` option.
#. Perform status checks to make sure everything is in order:
.. code-block:: console
$ placement-status upgrade check
Finalize installation Finalize installation
--------------------- ---------------------

View File

@@ -26,5 +26,6 @@ placement with the rest of an OpenStack cloud.
install-obs.rst install-obs.rst
install-rdo.rst install-rdo.rst
install-ubuntu.rst install-ubuntu.rst
verify.rst
.. _HTTP API: https://developer.openstack.org/api-ref/placement/ .. _HTTP API: https://developer.openstack.org/api-ref/placement/

View File

@@ -2,9 +2,72 @@
Verify Installation Verify Installation
=================== ===================
.. TODO:: Verify operation of the placement service.
Document how to ensure that yup, we made it work. One option is listing .. note:: You will need to authenticate to the identity service as an
resource providers after the service is up, but that's not ideal because ``admin`` before making these calls. There are many different ways
nova is installed after placement. When these docs are ready, make sure to do this, depending on how your system was set up. If you do not
to add this file to the table of contents in install/index.rst. have an ``admin-openrc`` file, you will have something similar.
#. Source the ``admin`` credentials to gain access to admin-only CLI commands:
.. code-block:: console
$ . admin-openrc
#. Perform status checks to make sure everything is in order:
.. code-block:: console
$ placement-status upgrade check
+----------------------------------+
| Upgrade Check Results |
+----------------------------------+
| Check: Missing Root Provider IDs |
| Result: Success |
| Details: None |
+----------------------------------+
| Check: Incomplete Consumers |
| Result: Success |
| Details: None |
+----------------------------------+
The output of that command will vary by release.
See :ref:`placement-status upgrade check <placement-status-checks>` for
details.
#. Run some commands against the placement API:
* Install the `osc-placement`_ plugin:
.. note:: This example uses `PyPI`_ and `pip`_ but if you are using
distribution packages you can install the package from their
repository.
.. code-block:: console
$ pip install osc-placement
* List available resource classes and traits:
.. code-block:: console
$ openstack --os-placement-api-version 1.2 resource class list --sort-column name
+----------------------------+
| name |
+----------------------------+
| DISK_GB |
| IPV4_ADDRESS |
| ... |
$ openstack --os-placement-api-version 1.6 trait list --sort-column name
+---------------------------------------+
| name |
+---------------------------------------+
| COMPUTE_DEVICE_TAGGING |
| COMPUTE_NET_ATTACH_INTERFACE |
| ... |
.. _osc-placement: https://docs.openstack.org/osc-placement/latest/
.. _PyPI: https://pypi.org
.. _pip: https://pypi.org/project/pip/