2016-11-24 14:57:53 +01:00
|
|
|
========================
|
|
|
|
Team and repository tags
|
|
|
|
========================
|
|
|
|
|
2017-01-31 07:36:05 +09:00
|
|
|
.. image:: https://governance.openstack.org/badges/openstack-manuals.svg
|
|
|
|
:target: https://governance.openstack.org/reference/tags/index.html
|
2016-11-24 14:57:53 +01:00
|
|
|
|
|
|
|
.. Change things from this point on
|
|
|
|
|
2013-12-04 21:07:43 +01:00
|
|
|
OpenStack Manuals
|
2012-03-06 15:27:48 -08:00
|
|
|
+++++++++++++++++
|
|
|
|
|
2013-12-04 21:07:43 +01:00
|
|
|
This repository contains documentation for the OpenStack project.
|
2012-03-06 15:27:48 -08:00
|
|
|
|
2016-01-16 09:55:49 +09:00
|
|
|
For more details, see the `OpenStack Documentation Contributor
|
2017-01-31 07:36:05 +09:00
|
|
|
Guide <https://docs.openstack.org/contributor-guide/>`_.
|
2011-11-20 16:58:41 -05:00
|
|
|
|
2013-12-04 21:07:43 +01:00
|
|
|
It includes these manuals:
|
|
|
|
|
2016-04-02 11:17:09 +05:30
|
|
|
* Administrator Guide
|
2014-07-22 21:47:40 +02:00
|
|
|
* Architecture Design Guide
|
2014-07-05 08:17:53 +02:00
|
|
|
* Command-Line Interface Reference
|
|
|
|
* Configuration Reference
|
2015-11-27 17:48:45 +08:00
|
|
|
* Documentation Contributor Guide
|
2014-07-05 08:17:53 +02:00
|
|
|
* End User Guide
|
2016-05-05 21:12:50 +05:30
|
|
|
* High Availability Guide
|
2016-10-14 11:15:41 +09:00
|
|
|
* Installation Tutorials
|
2015-11-27 17:48:45 +08:00
|
|
|
* Networking Guide
|
2016-05-02 10:32:52 +05:30
|
|
|
* Operations Guide
|
2013-12-04 21:07:43 +01:00
|
|
|
* Virtual Machine Image Guide
|
2011-11-20 16:58:41 -05:00
|
|
|
|
2012-07-07 18:33:06 -04:00
|
|
|
In addition to the guides, this repository contains:
|
2012-03-06 15:27:48 -08:00
|
|
|
|
2016-01-16 09:55:49 +09:00
|
|
|
* docs.openstack.org contents: ``www``
|
|
|
|
|
|
|
|
Building
|
|
|
|
========
|
2016-05-18 12:22:16 +02:00
|
|
|
|
2016-01-16 09:55:49 +09:00
|
|
|
Various manuals are in subdirectories of the ``doc/`` directory.
|
|
|
|
|
|
|
|
Guides
|
|
|
|
------
|
2016-05-18 12:22:16 +02:00
|
|
|
|
2017-02-24 15:11:03 -06:00
|
|
|
Some pre-requisites are needed to build the guides. If you are using a Linux
|
|
|
|
operating system you can generate a report of missing local requirements with
|
|
|
|
the ``bindep`` command::
|
|
|
|
|
|
|
|
$ tox -e bindep
|
|
|
|
|
2016-10-14 11:15:41 +09:00
|
|
|
All guides are in the RST format. You can use ``tox`` to prepare
|
2017-02-23 16:58:18 -06:00
|
|
|
virtual environment and build all guides (HTML only):
|
2016-01-16 09:55:49 +09:00
|
|
|
|
2016-10-14 11:15:41 +09:00
|
|
|
$ tox -e docs
|
2016-01-16 09:55:49 +09:00
|
|
|
|
|
|
|
You can also build a specific guide.
|
2016-05-18 12:22:16 +02:00
|
|
|
|
2016-01-16 09:55:49 +09:00
|
|
|
For example, to build *OpenStack End User Guide*, use the following command::
|
|
|
|
|
2016-10-14 11:15:41 +09:00
|
|
|
$ tox -e build -- user-guide
|
2016-01-16 09:55:49 +09:00
|
|
|
|
|
|
|
You can find the root of the generated HTML documentation at::
|
|
|
|
|
|
|
|
doc/user-guide/build/html/index.html
|
|
|
|
|
2017-02-21 08:40:58 -05:00
|
|
|
To build a specific guide with a PDF file, add a ``-pdf`` option like::
|
|
|
|
|
|
|
|
$ tox -e build -- user-guide --pdf
|
|
|
|
|
|
|
|
The generated PDF file will be copied to the root directory of the
|
|
|
|
generated HTML documentation.
|
|
|
|
|
2017-02-23 16:58:18 -06:00
|
|
|
If you get this message `make: xelatex: No such file or directory` it means
|
|
|
|
your local environment does not have LaTeX installed. Read `Getting LaTeX
|
|
|
|
<https://www.latex-project.org/get/>`_ for instructions.
|
2011-09-20 08:50:34 -05:00
|
|
|
|
2014-01-02 17:01:48 +01:00
|
|
|
Testing of changes and building of the manual
|
|
|
|
=============================================
|
|
|
|
|
2016-05-18 12:22:16 +02:00
|
|
|
Install the Python tox package and run ``tox`` from the top-level
|
2017-02-26 19:50:07 +01:00
|
|
|
directory to use the same tests that are done as part of the OpenStack
|
|
|
|
CI jobs.
|
2014-01-02 17:01:48 +01:00
|
|
|
|
|
|
|
If you like to run individual tests, run:
|
2014-02-02 10:44:49 +01:00
|
|
|
|
|
|
|
* ``tox -e checkbuild`` - to actually build the manual
|
2014-10-13 16:42:04 +02:00
|
|
|
* ``tox -e checklang`` - to build translated manuals
|
2016-10-14 11:15:41 +09:00
|
|
|
* ``tox -e checkniceness`` - to run the niceness tests
|
|
|
|
* ``tox -e linkcheck`` - to run the tests for working remote URLs
|
2014-01-02 17:01:48 +01:00
|
|
|
|
2017-02-07 14:56:18 -06:00
|
|
|
The :command:`tox` command uses the openstack-doc-tools package to run the
|
2014-01-02 17:01:48 +01:00
|
|
|
tests.
|
|
|
|
|
2012-03-06 15:27:48 -08:00
|
|
|
|
2016-03-15 21:56:16 +00:00
|
|
|
Generated files
|
|
|
|
---------------
|
|
|
|
|
|
|
|
Some documentation files are generated using tools. These files include
|
2016-10-14 11:15:41 +09:00
|
|
|
a ``do not edit`` header and should not be modified by hand.
|
|
|
|
Please see `Generated files
|
2017-01-31 07:36:05 +09:00
|
|
|
<https://docs.openstack.org/contributor-guide/doc-tools.html>`_.
|
2016-03-15 21:56:16 +00:00
|
|
|
|
2014-01-03 10:24:25 +01:00
|
|
|
|
|
|
|
Bugs
|
|
|
|
====
|
|
|
|
|
|
|
|
Bugs should be filed on Launchpad, not GitHub:
|
|
|
|
|
|
|
|
https://bugs.launchpad.net/openstack-manuals
|
2012-03-06 15:27:48 -08:00
|
|
|
|
2011-09-20 08:50:34 -05:00
|
|
|
|
|
|
|
Installing
|
|
|
|
==========
|
2016-05-18 12:22:16 +02:00
|
|
|
|
2017-01-31 07:36:05 +09:00
|
|
|
Refer to https://docs.openstack.org to see where these documents are
|
|
|
|
published and to learn more about the OpenStack project.
|