openstack-manuals/doc/high-availability-guide
OpenStack Proposal Bot fb21219680 Imported Translations from Transifex
Change-Id: Idb5051d2672a91c731b688227db316d30d891992
2014-05-27 06:12:40 +00:00
..
figures Folder rename, file rename, flattening of directories 2013-09-08 15:15:50 -07:00
includes Fix neutron-l3-agent primitive in ha guide 2014-03-30 08:52:47 +08:00
locale Imported Translations from Transifex 2014-05-27 06:12:40 +00:00
README Folder rename, file rename, flattening of directories 2013-09-08 15:15:50 -07:00
aa-automated-deployment.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
aa-computes.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
aa-controllers.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
aa-database.txt Added a procedure and edits to HA guide 2014-05-26 17:24:56 +10:00
aa-haproxy.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
aa-network.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
aa-overview.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
aa-rabbitmq.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
aa-storage.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-api-node.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-api-pacemaker.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-api-vip.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-ceilometer-agent-central.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-cinder-api.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-cloud-controller.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-glance-api.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-keystone.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-mysql.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-network-controller.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-neutron-server.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-overview.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-pacemaker.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ap-rabbitmq.txt Better follow conventions in HA Guide 2014-05-12 16:06:26 -04:00
ha-guide-docinfo.xml Readies for release candidate for stable/icehouse branch 2014-05-09 17:33:35 +02:00
ha-guide.txt Attempt to fix problems in high availability guide 2013-10-14 11:18:51 -05:00
intro.txt minor edits to HA guide 2013-10-29 16:56:19 +11:00
pom.xml All these pom.xml files were causing an incorrect canonical url 2014-03-05 21:09:07 -06:00

README

This directory contains what's eventually intended to become reference
documentation for OpenStack High Availability.

Contrary to the rest of the documentation which is straight-up
DocBook, this guide is being maintained, at least for the time being,
in AsciiDoc. AsciiDoc processing is supported by the OpenStack Jenkins
CI infrastructure, but not by the Maven toolchain. So as a stop-gap
measure until such support becomes available, please do this if you
want to build offline before you send a patch:

1. Make your change to the AsciiDoc source file (.txt). The syntax
   should be self explanatory-and intuitive to anyone who's ever used
   something like Markdown or RST. The AsciiDoc cheatsheet is an
   extremely useful resource: http://powerman.name/doc/asciidoc

2. Pipe your stuff through AsciiDoc. Here's one catch: AsciiDoc
   currently doesn't fully support DocBook 5, but the Maven toolchain
   requires it. So you'll have to run your AsciiDoc output through the
   "db4upgrade.xsl" stylesheet that ships with DocBook 5.

3. Finally, indent your resulting XML with two spaces. This should
   produce a clean patch against bk-ha-guide.xml which you can then
   submit to Gerrit along with your .txt file patch.

4. Add an "xml:id" attribute on the root <book> element. The Maven
   toolchain requires this.

Here's a command line you can use with AsciiDoc, xsltproc, xmllint and
sed to achieve all of the above:

asciidoc -b docbook -d book -o - ha-guide.txt | \
  xsltproc -o - /path/to/db4-upgrade.xsl - | \
  xmllint --format - | \
  sed -e 's,^<book ,<book xml:id="bk-ha-guide" ,' \
  > bk-ha-guide.xml

Admittedly, the sed hack is particularly ugly, but it does get the job
done.

After that, you should be able to build with "mvn clean
generate-sources" as you normally would.