RETIRED, Fuel Documentation
Go to file
Meg McRoberts 18850814d1 Update control files to 5.0 and date to May 2014
List of major releases is removed from preface.rst: the intention of this table
is to track revisions of documentation for the current major release.

Change-Id: If0d87ccfdcb9b312174a6e1ddeefa03dd38f253f
2014-05-21 16:32:08 -07:00
_fonts changed images, added font configs 2013-08-05 18:16:41 +04:00
_images Small Sahara fixes 2014-05-12 14:52:49 +04:00
_static Provide patches for NIC bond examples 2013-12-27 21:02:22 +04:00
_templates Removed location.href parser code 2014-05-13 18:54:34 +03:00
contents Document Docker/dockerctl 2014-05-15 06:54:56 +00:00
pages Update control files to 5.0 and date to May 2014 2014-05-21 16:32:08 -07:00
pdf Update control files to 5.0 and date to May 2014 2014-05-21 16:32:08 -07:00
relnotes Update control files to 5.0 and date to May 2014 2014-05-21 16:32:08 -07:00
.gitignore Use SVG graphics in HTML docs 2013-12-11 17:27:32 -08:00
.gitreview Added .gitreview file which points to OpenStack gerrit 2013-12-10 12:01:28 +04:00
common_conf.py Update control files to 5.0 and date to May 2014 2014-05-21 16:32:08 -07:00
conf.py Move common config params to a separate file 2013-12-09 23:58:12 +02:00
contents.rst General arch, added Ceph and Galera info 2014-05-06 19:31:59 -07:00
eula.rst restructured the repository, fixed issue with PDF generation 2013-10-02 23:58:16 -07:00
index.rst Update control files to 5.0 and date to May 2014 2014-05-21 16:32:08 -07:00
install-guide.rst Update control files to 5.0 and date to May 2014 2014-05-21 16:32:08 -07:00
LICENSE updated for 3.1 2013-07-23 20:47:18 +04:00
Makefile Split the RelNotes content into a set of files 2014-01-02 06:38:25 +04:00
operations.rst Fix some warnings and some refactoring 2014-04-28 15:22:11 +04:00
pre-install-guide.rst reorganized Sahara information 2014-05-03 15:13:17 -07:00
README.md checklist for fuel-docs code reviewers 2014-05-14 13:51:04 -04:00
reference-architecture.rst Fix some warnings and some refactoring 2014-04-28 15:22:11 +04:00
release-notes.rst set up skeleton for 5.0 relnotes 2014-04-30 18:26:46 -07:00
requirements.txt Cosmetics 2013-07-23 21:21:29 +04:00
terminology.rst Introduce Terminology Reference document 2014-04-28 20:40:27 -07:00
user-guide.rst moved all Murano docs into Operations Guide 2014-04-28 20:14:57 -07:00

Mirantis OpenStack Documentation

This repository contains the Mirantis OpenStack user and administrator guides. For more details, see the Mirantis OpenStack portal.

Contributing

We welcome all people who are interested in helping our Documentation team to improve our documentation. There are no formal membership requirements, so feel free to hop in. The best way to contibute is to fork our repository, do your changes and send us a Pull Request. You are invited to contribute any type of contribution like new ideas, testing, and even deployment scripts.

We also have an IRC channel at #fuel & #fuel-dev on irc.freenode.net where you can ask questions and give feedback.

Prerequisites

Sphinx Documentation Generator must be installed to build the documentation. Please note that easy_install is a component of Python's Setup Tools package, which is commonly an optional install on most distributions.

To get started, you need to install all necesasary tools:

sudo apt-get install git python-pip python-dev make imagemagick libjpeg-dev inkscape

Among other things that installs ImageMagick and Inkscape.

And Sphinx necessary extensions:

sudo pip install -r requirements.txt

In addition to these eggs you will need to install PlantUML

To install PlantUML run this wget process:

sudo wget \
http://sourceforge.net/projects/plantuml/files/plantuml.jar/download \
-O /sbin/plantuml.jar

PlantumUML requires java: sudo apt-get install openjdk-7-jre

We use Inkscape to edit SVG images and convert them to PDF but you may use any other SVG-capable tool you like. We're not picky.

Building

To build a guide in HTML format, go to its directory and then run the make command in that directory, like so:

make html

To generate the PDF file run this:

make pdf

You will find generated HTML documentation at:

_build/html

You will find generated PDF documentation at:

_build/pdf

Reviewer's Checklist

Checks for commit message:

  1. The goal and extent of the change should be described in the commit message.

  2. If the commit is related to a LaunchPad bug, it should have "Closes-Bug: nnnnnnn" line in the commit message. Likewise, "blueprint name-of-the-blueprint" for a commit related to a blueprint. Most non-trivial commits should have such references.

Checks for content changes:

  1. For every block of content that is removed, there should be either a block that replaces it, or an explanation in the commit message why that block is no longer needed.

  2. Confirm that the new content is approved by a technical expert in the relevant area.

  3. Check that the content is in the right document and the right context. Deployment of Fuel itself is described in the Installation Guide; deployment of Mirantis OpenStack using Fuel, in User Guide; post-deployment operation of Mirantis OpenStack, in Operations Guide; and so on.

Checks for structural changes:

  1. For any removed file (including original path in a move or rename), grep for the file name through all rst files and confirm that no stale references to the file are left behind.

  2. For any added file (including new path in a move or rename), confirm that the new path is referenced in a way that will get it included in at least one document.

Testing the change locally:

  1. Download the branch: git review -d

  2. Check that it's based on the current tip of the master branch, look for "origin/master" next to commit hash in the output of: git log --graph --decorate

  3. If it's not, check if it can be rebased onto master cleanly: git rebase --onto master HEAD^

  4. Build HTML and PDF versions as described above. If rebase was necessary, build from the rebased version: you want to see what the result of the merge into master will look like

  5. Check that the count of warnings reported by 'make pdf' hasn't increased relative to master.

  6. Check that all sections touched by the change show up in the table of contents in the right place and at the right nesting level.

Finally, go through all changes line by line and ask yourself: what is the purpose of this change? Is that related to the description of the review given in the commit message? Could it be accidental or result of a merge error during rebase?