b6b89f6eb5
This patch adds the team's and repository's badges to the README file. The motivation behind this is to communicate the project status and features at first glance. For more information about this effort, please read this email thread: http://lists.openstack.org/pipermail/openstack-dev/2016-October/105562.html To see an example of how this would look like check: https://gist.github.com/86ae08399d879ac93eff9ea2a965b525 Change-Id: I7a2bbcd156a43646854010e4a0c07b1058012ae4
39 lines
939 B
ReStructuredText
39 lines
939 B
ReStructuredText
========================
|
|
Team and repository tags
|
|
========================
|
|
|
|
.. image:: http://governance.openstack.org/badges/openstack-ansible-os_trove.svg
|
|
:target: http://governance.openstack.org/reference/tags/index.html
|
|
|
|
.. Change things from this point on
|
|
|
|
OpenStack-Ansible Trove (DBaaS)
|
|
###############################
|
|
|
|
Ansible role that installs and configures OpenStack Trove. Trove is
|
|
installed behind the Apache webserver listening on port 8779 by default.
|
|
|
|
Required Variables
|
|
==================
|
|
|
|
This list is not exhaustive at present. See role internals for further
|
|
details.
|
|
|
|
.. code-block:: yaml
|
|
|
|
# trove TCP listening port
|
|
trove_service_port: 8779
|
|
|
|
Example Playbook
|
|
================
|
|
|
|
.. code-block:: yaml
|
|
|
|
- name: Install trove server
|
|
hosts: trove_all
|
|
user: root
|
|
roles:
|
|
- { role: "os_trove", tags: [ "os-trove" ] }
|
|
vars:
|
|
is_metal: "{{ properties.is_metal|default(false) }}"
|