Fix inconsistent service naming in install guide

This patch fixes inconsistent service naming and does a few minor
tweaks (for better readability) in the install guide.

Change-Id: Id884079e3ae0b1a6cb199b482c20c10a149690a0
This commit is contained in:
Ramamani Yeleswarapu 2017-02-23 09:34:53 -08:00
parent 8ef07dbdbb
commit 6161081cdb

View File

@ -9,8 +9,8 @@ environment)::
pip install ironic-inspector pip install ironic-inspector
Also there is a `DevStack <http://docs.openstack.org/developer/devstack/>`_ Also there is a `DevStack <http://docs.openstack.org/developer/devstack/>`_
plugin for **ironic-inspector** - see :ref:`contributing_link` for the current plugin for **ironic-inspector** - see :ref:`contributing_link` for the
status. current status.
Finally, some distributions (e.g. Fedora) provide **ironic-inspector** Finally, some distributions (e.g. Fedora) provide **ironic-inspector**
packaged, some of them - under its old name *ironic-discoverd*. packaged, some of them - under its old name *ironic-discoverd*.
@ -24,22 +24,23 @@ if you plan on installing **ironic-inspector** manually.
.. _PyPI: https://pypi.python.org/pypi/ironic-inspector .. _PyPI: https://pypi.python.org/pypi/ironic-inspector
Note for Ubuntu users .. note::
Please beware :ref:`possible DNS issues <ubuntu-dns>` when installing Please beware of :ref:`possible DNS issues <ubuntu-dns>` when installing
Ironic-Inspector on Ubuntu. **ironic-inspector** on Ubuntu.
Version Support Matrix Version Support Matrix
~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~
**ironic-inspector** currently requires bare metal API version ``1.11`` to be **ironic-inspector** currently requires the Bare Metal API version
provided by Ironic. This version is available starting with Ironic Liberty ``1.11`` to be provided by **ironic**. This version is available starting
release. with the Liberty release of **ironic**.
Here is a mapping between Ironic versions and supported **ironic-inspector** Here is a mapping between the ironic versions and the supported
versions. The Standalone column shows which **ironic-inspector** versions can ironic-inspector versions. The Standalone column shows which
be used in standalone mode with each Ironic version. The Inspection Interface ironic-inspector versions can be used in standalone mode with each
column shows which **ironic-inspector** versions can be used with the Ironic ironic version. The Inspection Interface column shows which
inspection interface in each version of Ironic. ironic-inspector versions can be used with the inspection interface in
each version of **ironic**.
============== ============ ==================== ============== ============ ====================
Ironic Version Standalone Inspection Interface Ironic Version Standalone Inspection Interface
@ -53,32 +54,33 @@ Ocata+ 5.0 - 5.X 5.0 - 5.X
============== ============ ==================== ============== ============ ====================
.. note:: .. note::
``3.X`` means we don't have specific plans on deprecating support for this ``3.X`` means there are no specific plans to deprecate support for this
Ironic version. This does not imply that we'll support it forever though. ironic version. This does not imply that it will be supported forever.
Configuration Configuration
~~~~~~~~~~~~~ ~~~~~~~~~~~~~
Copy ``example.conf`` to some permanent place Copy ``example.conf`` to some permanent place
(e.g. ``/etc/ironic-inspector/inspector.conf``). (e.g. ``/etc/ironic-inspector/inspector.conf``).
Fill in at least these configuration values: Fill in these minimum configuration values:
* The ``keystone_authtoken`` section - credentials to use when checking user * The ``keystone_authtoken`` section - credentials to use when checking user
authentication. authentication.
* The ``ironic`` section - credentials to use when accessing the Ironic API. * The ``ironic`` section - credentials to use when accessing **ironic**
API.
* ``connection`` in the ``database`` section - SQLAlchemy connection string * ``connection`` in the ``database`` section - SQLAlchemy connection string
for the database; for the database.
* ``dnsmasq_interface`` - interface on which ``dnsmasq`` (or another DHCP * ``dnsmasq_interface`` in the ``firewall`` section - interface on which
service) listens for PXE boot requests (defaults to ``br-ctlplane`` which is ``dnsmasq`` (or another DHCP service) listens for PXE boot requests
a sane default for TripleO-based installations but is unlikely to work for (defaults to ``br-ctlplane`` which is a sane default for **tripleo**-based
other cases). installations but is unlikely to work for other cases).
See comments inside `example.conf See comments inside `example.conf
<https://github.com/openstack/ironic-inspector/blob/master/example.conf>`_ <https://github.com/openstack/ironic-inspector/blob/master/example.conf>`_
for the other possible configuration options. for other possible configuration options.
.. note:: .. note::
Configuration file contains a password and thus should be owned by ``root`` Configuration file contains a password and thus should be owned by ``root``
@ -127,8 +129,8 @@ Here is an example *inspector.conf* (adapted from a gate run)::
.. note:: .. note::
Set ``debug = true`` if you want to see complete logs. Set ``debug = true`` if you want to see complete logs.
**ironic-inspector** requires root rights for managing iptables. It gets them **ironic-inspector** requires root rights for managing ``iptables``. It
by running ``ironic-inspector-rootwrap`` utility with ``sudo``. gets them by running ``ironic-inspector-rootwrap`` utility with ``sudo``.
To allow it, copy file ``rootwrap.conf`` and directory ``rootwrap.d`` to the To allow it, copy file ``rootwrap.conf`` and directory ``rootwrap.d`` to the
configuration directory (e.g. ``/etc/ironic-inspector/``) and create file configuration directory (e.g. ``/etc/ironic-inspector/``) and create file
``/etc/sudoers.d/ironic-inspector-rootwrap`` with the following content:: ``/etc/sudoers.d/ironic-inspector-rootwrap`` with the following content::
@ -159,15 +161,15 @@ Replace ``stack`` with whatever user you'll be using to run
Configuring IPA Configuring IPA
^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^
ironic-python-agent_ is a ramdisk developed for Ironic. During the Liberty ironic-python-agent_ is a ramdisk developed for **ironic** and support
cycle support for **ironic-inspector** was added. This is the default ramdisk for **ironic-inspector** was added during the Liberty cycle. This is the
starting with the Mitaka release. default ramdisk starting with the Mitaka release.
.. note:: .. note::
You need at least 1.5 GiB of RAM on the machines to use IPA built with You need at least 1.5 GiB of RAM on the machines to use IPA built with
diskimage-builder_ and at least 384 MiB to use the *TinyIPA*. diskimage-builder_ and at least 384 MiB to use the *TinyIPA*.
To build an ironic-python-agent ramdisk, do the following: To build an **ironic-python-agent** ramdisk, do the following:
* Get the new enough version of diskimage-builder_:: * Get the new enough version of diskimage-builder_::
@ -188,13 +190,13 @@ Alternatively, you can download a `prebuilt TinyIPA image
the `other builders the `other builders
<http://docs.openstack.org/developer/ironic-python-agent/#image-builders>`_. <http://docs.openstack.org/developer/ironic-python-agent/#image-builders>`_.
.. _diskimage-builder: https://github.com/openstack/diskimage-builder .. _diskimage-builder: https://docs.openstack.org/developer/diskimage-builder/
.. _ironic-python-agent: https://github.com/openstack/ironic-python-agent .. _ironic-python-agent: https://docs.openstack.org/developer/ironic-python-agent/
Configuring PXE Configuring PXE
^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^
As for PXE boot environment, you'll need: For the PXE boot environment, you'll need:
* TFTP server running and accessible (see below for using *dnsmasq*). * TFTP server running and accessible (see below for using *dnsmasq*).
Ensure ``pxelinux.0`` is present in the TFTP root. Ensure ``pxelinux.0`` is present in the TFTP root.
@ -223,8 +225,8 @@ As for PXE boot environment, you'll need:
IPA is pluggable: you can insert introspection plugins called IPA is pluggable: you can insert introspection plugins called
*collectors* into it. For example, to enable a very handy ``logs`` collector *collectors* into it. For example, to enable a very handy ``logs`` collector
(sending ramdisk logs to **ironic-inspector**), modify the ``append`` line in (sending ramdisk logs to **ironic-inspector**), modify the ``append``
``$TFTPROOT/pxelinux.cfg/default``:: line in ``$TFTPROOT/pxelinux.cfg/default``::
append initrd=ironic-agent.initramfs ipa-inspection-callback-url=http://{IP}:5050/v1/continue ipa-inspection-collectors=default,logs systemd.journald.forward_to_console=yes append initrd=ironic-agent.initramfs ipa-inspection-callback-url=http://{IP}:5050/v1/continue ipa-inspection-collectors=default,logs systemd.journald.forward_to_console=yes
@ -234,7 +236,7 @@ As for PXE boot environment, you'll need:
* You need PXE boot server (e.g. *dnsmasq*) running on **the same** machine as * You need PXE boot server (e.g. *dnsmasq*) running on **the same** machine as
**ironic-inspector**. Don't do any firewall configuration: **ironic-inspector**. Don't do any firewall configuration:
**ironic-inspector** will handle it for you. In the **ironic-inspector** **ironic-inspector** will handle it for you. In **ironic-inspector**
configuration file set ``dnsmasq_interface`` to the interface your configuration file set ``dnsmasq_interface`` to the interface your
PXE boot server listens on. Here is an example *dnsmasq.conf*:: PXE boot server listens on. Here is an example *dnsmasq.conf*::
@ -257,7 +259,7 @@ Configuring iPXE
iPXE allows better scaling as it primarily uses the HTTP protocol instead of iPXE allows better scaling as it primarily uses the HTTP protocol instead of
slow and unreliable TFTP. You still need a TFTP server as a fallback for slow and unreliable TFTP. You still need a TFTP server as a fallback for
nodes not supporting iPXE. To use iPXE you'll need: nodes not supporting iPXE. To use iPXE, you'll need:
* TFTP server running and accessible (see above for using *dnsmasq*). * TFTP server running and accessible (see above for using *dnsmasq*).
Ensure ``undionly.kpxe`` is present in the TFTP root. If any of your nodes Ensure ``undionly.kpxe`` is present in the TFTP root. If any of your nodes
@ -285,12 +287,12 @@ nodes not supporting iPXE. To use iPXE you'll need:
Older versions of the iPXE ROM tend to misbehave on unreliable network Older versions of the iPXE ROM tend to misbehave on unreliable network
connection, thus we use the timeout option with retries. connection, thus we use the timeout option with retries.
Just like with PXE you can customize the list of collectors by appending Just like with PXE, you can customize the list of collectors by appending
the ``ipa-inspector-collectors`` kernel option, for example:: the ``ipa-inspector-collectors`` kernel option. For example::
ipa-inspection-collectors=default,logs,extra_hardware ipa-inspection-collectors=default,logs,extra_hardware
* Just as with PXE you'll need a PXE boot server. The configuration, however, * Just as with PXE, you'll need a PXE boot server. The configuration, however,
will be different. Here is an example *dnsmasq.conf*:: will be different. Here is an example *dnsmasq.conf*::
port=0 port=0
@ -312,22 +314,22 @@ nodes not supporting iPXE. To use iPXE you'll need:
will get ``ipxe.efi`` firmware to execute, while the remaining will get will get ``ipxe.efi`` firmware to execute, while the remaining will get
``undionly.kpxe``. ``undionly.kpxe``.
Managing the **ironic-inspector** database Managing the **ironic-inspector** Database
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
**ironic-inspector** provides a command line client for managing its database, **ironic-inspector** provides a command line client for managing its
this client can be used for upgrading, and downgrading the database using database. This client can be used for upgrading, and downgrading the database
alembic migrations. using `alembic <https://alembic.readthedocs.org/>`_ migrations.
If this is your first time running **ironic-inspector** to migrate the If this is your first time running **ironic-inspector** to migrate the
database simply run: database, simply run:
:: ::
ironic-inspector-dbsync --config-file /etc/ironic-inspector/inspector.conf upgrade ironic-inspector-dbsync --config-file /etc/ironic-inspector/inspector.conf upgrade
If you have previously run a version of **ironic-inspector** earlier than If you have previously run a version of **ironic-inspector** earlier than
2.2.0, the safest thing is to delete the existing SQLite database and run 2.2.0, the safest thing is to delete the existing SQLite database and run
``upgrade`` as shown above. If you, however, want to save the existing ``upgrade`` as shown above. However, if you want to save the existing
database, to ensure your database will work with the migrations, you'll need to database, to ensure your database will work with the migrations, you'll need to
run an extra step before upgrading the database. You only need to do this the run an extra step before upgrading the database. You only need to do this the
first time running version 2.2.0 or later. first time running version 2.2.0 or later.
@ -338,7 +340,7 @@ If you are upgrading from **ironic-inspector** version 2.1.0 or lower:
ironic-inspector-dbsync --config-file /etc/ironic-inspector/inspector.conf stamp --revision 578f84f38d ironic-inspector-dbsync --config-file /etc/ironic-inspector/inspector.conf stamp --revision 578f84f38d
ironic-inspector-dbsync --config-file /etc/ironic-inspector/inspector.conf upgrade ironic-inspector-dbsync --config-file /etc/ironic-inspector/inspector.conf upgrade
If you are upgrading from a git master install of **ironic-inspector** from If you are upgrading from a git master install of the **ironic-inspector**
after :ref:`rules` were introduced: after :ref:`rules` were introduced:
:: ::