2016-11-25 09:01:04 +01:00
|
|
|
========================
|
|
|
|
Team and repository tags
|
|
|
|
========================
|
|
|
|
|
2017-08-22 13:34:34 +08:00
|
|
|
.. image:: https://governance.openstack.org/tc/badges/openstack-ansible-os_trove.svg
|
|
|
|
:target: https://governance.openstack.org/tc/reference/tags/index.html
|
2016-11-25 09:01:04 +01:00
|
|
|
|
|
|
|
.. Change things from this point on
|
|
|
|
|
2018-08-28 08:48:48 +02:00
|
|
|
=======================
|
|
|
|
OpenStack-Ansible Trove
|
|
|
|
=======================
|
2016-08-25 14:54:34 +02:00
|
|
|
|
2016-08-25 14:56:41 +02:00
|
|
|
Ansible role that installs and configures OpenStack Trove. Trove is
|
|
|
|
installed behind the Apache webserver listening on port 8779 by default.
|
2016-08-25 14:54:34 +02:00
|
|
|
|
2018-08-28 08:48:48 +02:00
|
|
|
Documentation for the project can be found at:
|
|
|
|
`<https://docs.openstack.org/openstack-ansible-os_trove/latest/>`_
|
|
|
|
|
|
|
|
Release notes for the project can be found at:
|
|
|
|
`<https://docs.openstack.org/releasenotes/openstack-ansible-os_trove/>`_
|
|
|
|
|
|
|
|
The project source code repository is located at:
|
2019-05-05 21:17:46 +08:00
|
|
|
`<https://opendev.org/openstack/openstack-ansible-os_trove>`_
|
2018-08-28 08:48:48 +02:00
|
|
|
|
|
|
|
The project home is at:
|
|
|
|
`<https://launchpad.net/openstack-ansible>`_
|
|
|
|
|
2018-08-31 02:21:02 -07:00
|
|
|
The project bug tracker is located at:
|
|
|
|
`<https://bugs.launchpad.net/openstack-ansible>`_
|
2018-08-28 08:48:48 +02:00
|
|
|
|
2016-08-25 14:54:34 +02:00
|
|
|
Required Variables
|
|
|
|
==================
|
|
|
|
|
|
|
|
This list is not exhaustive at present. See role internals for further
|
|
|
|
details.
|
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
# trove TCP listening port
|
2016-08-25 14:56:41 +02:00
|
|
|
trove_service_port: 8779
|
2016-08-25 14:54:34 +02:00
|
|
|
|
|
|
|
Example Playbook
|
|
|
|
================
|
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
2018-06-27 11:39:31 -04:00
|
|
|
- name: Install trove service
|
2016-08-25 14:54:34 +02:00
|
|
|
hosts: trove_all
|
|
|
|
user: root
|
|
|
|
roles:
|
|
|
|
- { role: "os_trove", tags: [ "os-trove" ] }
|
|
|
|
vars:
|
|
|
|
is_metal: "{{ properties.is_metal|default(false) }}"
|
2018-06-19 06:05:00 +00:00
|
|
|
|