Files
28f3145e6b64dbee3ecd7b81fd466de9d09aebba
openstack-ansible-os_trove /README.rst

30 lines
665 B
ReStructuredText
Raw Normal View History

2016年08月25日 14:54:34 +02:00
OpenStack-Ansible trove
###############################
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
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
- name: Install trove server
hosts: trove_all
user: root
roles:
- { role: "os_trove", tags: [ "os-trove" ] }
vars:
is_metal: "{{ properties.is_metal|default(false) }}"