RETIRED, Fuel Documentation
Go to file
Denis V. Meltsaykin 80e700fcdf [RN 5.1] 5.1.1 MU2 Release notes
Adding release notes for 5.1.1 MU2.

Co-Authored-By: Denis V. Meltsaykin <dmeltsaykin@mirantis.com>
Co-Authored-By: Olena Logvinova <ologvinova@mirantis.com>

Change-Id: I676d84bd37fb4600d4a0df02b72d715617e8227f
2015-11-27 18:18:41 +02:00
_fonts changed images, added font configs 2013-08-05 18:16:41 +04:00
_images Logging features for Fuel and OpenStack 2014-09-23 00:07:15 -07:00
_static Provide patches for NIC bond examples 2013-12-27 21:02:22 +04:00
_templates Add both pdf and html links to the index page 2014-07-23 21:35:26 +04:00
contents Add DB backup instructions to operations 2015-03-04 14:27:06 +00:00
pages [RN 5.1] 5.1.1 MU2 Release notes 2015-11-27 18:18:41 +02:00
pdf Update non-issues section of 5.1.1 Release Notes 2014-12-03 14:31:47 -08:00
.gitignore Fix gate-fuel-docs-docs CI job 2015-11-18 16:07:13 +03:00
.gitreview Added .gitreview file which points to OpenStack gerrit 2013-12-10 12:01:28 +04:00
LICENSE updated for 3.1 2013-07-23 20:47:18 +04:00
Makefile Fixes and cleanups for missing lables 2014-08-06 17:37:45 +00:00
README.md Adds requirements installation instructions for Fedora 2014-08-20 17:54:56 +04:00
common_conf.py Update non-issues section of 5.1.1 Release Notes 2014-12-03 14:31:47 -08:00
conf.py Fix gate-fuel-docs-docs CI job 2015-11-18 16:07:13 +03:00
contents.rst Fixes and cleanups for missing lables 2014-08-06 17:37:45 +00:00
eula.rst Fixes and cleanups for missing lables 2014-08-06 17:37:45 +00:00
index.rst Update non-issues section of 5.1.1 Release Notes 2014-12-03 14:31:47 -08:00
operations.rst Make some fixes to the documentation template 2014-06-25 18:12:04 +04:00
planning-guide.rst Make some fixes to the documentation template 2014-06-25 18:12:04 +04:00
reference-architecture.rst Make some fixes to the documentation template 2014-06-25 18:12:04 +04:00
release-notes.rst Release Notes 5.1 -- additions 2014-09-23 00:07:15 -07:00
requirements.txt Pin Sphinx version to 1.2.2 2015-04-13 14:34:05 +00:00
setup.cfg Fix gate-fuel-docs-docs CI job 2015-11-18 16:07:13 +03:00
setup.py Fix gate-fuel-docs-docs CI job 2015-11-18 16:07:13 +03:00
terminology.rst Fixes and cleanups for missing lables 2014-08-06 17:37:45 +00:00
tox.ini Fix gate-fuel-docs-docs CI job 2015-11-18 16:07:13 +03:00
user-guide.rst Fixes and cleanups for missing lables 2014-08-06 17:37:45 +00:00
virtualbox.rst Add both pdf and html links to the index page 2014-07-23 21:35:26 +04:00

README.md

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.

On Debian/Ubuntu:

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

On Fedora:

sudo yum install git python-pip python-devel make ImageMagick libjpeg-turbo-devel 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?