Move all blockstorage related section files into its own subdirectory
like it is done for other section files.
Follow conventions for service names/project names and capitalization.
Change-Id: Ibaa14ca926975c37305f3a08fa1f4e7d50eea605
I think it's better to use zypper dist-ugrade instead of
zypper update to make sure that packages of higher versions
maybe avaialble in the OBS repositories are applied.
zypper update will not apply them because a vendor-change
is necessary.
Change-Id: Ia735ec0a15e27c8e90955c388235cfc520cd21cb
To avoid confusions about the location of the configuration example
it's better to not mention it at all directly in the configuration
example.
Change-Id: I2668a563bfc41c30cfe44b1630455dc5a49e4133
JSON formatting can be optimized for size or for readability. The JSON
files in openstack-manuals favor readability (for obvious reasons).
Unlike typical JSON formatted for reading (see Wikipedia article on
JSON, or Python's JSON output), however, the files have no space after
the name-separator, making them somewhat harder to read.
This changeset adds the missing space after the name-separator.
It also changes indenting from 3 to 4 spaces (matching our conventions
for Python and shell code).
The order of keys (which doesn't matter for the software parser) has
been preserved, because the order may be intentional (to help human
readers).
For instance:
"uuid":"d8e02d56-2648-49a3-bf97-6be8f1204f38",
becomes:
"uuid": "d8e02d56-2648-49a3-bf97-6be8f1204f38",
It also changes a few overly long empty sets. For instance:
"volume:create":[
],
becomes:
"volume:create": [],
Change-Id: I559907e72578e6fb1a1a6895bd005ad9b22210d7
Publish documents only for trunk.
This patch needs to go in before we branch for stable. Once branched,
the stable/icehouse branch should be changed again to get a
publishdocs section that only contains the following line for publishdocs:
openstack-doc-test --check-build --publish --only-book install-guide --only-book config-reference
Change-Id: Ibb2f7ef3917801f158896308f1d5b5ba350acf5c
The lab guides showed how to add Icehouse repos under the title "Add
Havana repositories". Titles updated.
Change-Id: Iffdd9825f1cee2236124057cbb28a1edc5b1d454
Instead of declaring entities separately for each file, include the file
common/entities/openstack.ent.
Change-Id: I99f905be679eab34059a30311f11189c17b5498c
Give a specific directory so that it's clear that this is not a
subdirectory of the Image store (/var/lib/glance).
Also, remove the created directory at the end to make it clear that this
is a temporary download.
Change-Id: If42e5e891e728e7fb87318e29d88ede1376294b2
Closes-Bug: #1271018
Because the Identity server's token database table grows unconditionally
over time as new tokens are generated, the token table needs to be
manually cleared. The administrator must run the keystone-manage token_flush
command on a regular basis. Recommended frreqencyis once every minute.
Change-Id: Ie3dbe5e4336af71af7b83d68d28a1a72471f53eb
Closes-Bug: #1315236