Role os_trove for OpenStack-Ansible
Go to file
ZhongShengping 5d9b2094f6 Update mailinglist from dev to discuss
openstack-dev was decomissioned this night in https://review.openstack.org/621258
Update openstack-dev to openstack-discuss

Change-Id: I2f2bd51c4f3fe1efe9e5bdc15ba48c21d3507e9a
2018-12-05 09:14:52 +08:00
defaults Enable overriding the service setup host python interpreter 2018-11-30 16:56:00 +00:00
doc Fix doc8 failure 2018-08-28 09:43:40 +02:00
examples Trivial: Fix the pep8 warning 2018-09-04 02:38:53 +00:00
handlers Use a common python build/install role 2018-09-03 17:57:33 +01:00
library Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
meta Remove galera_client meta-dependency 2018-09-15 20:49:31 -06:00
releasenotes releasenotes: oslo-messaging-separate-backends add project name 2018-10-15 16:54:18 +02:00
tasks Enable overriding the service setup host python interpreter 2018-11-30 16:56:00 +00:00
templates Update messaging notification configuration 2018-09-27 02:16:53 +00:00
tests Set container_name as host_var in test inventory 2018-10-20 15:28:29 -07:00
vars Rename SUSE vars file and remove mysql-python 2018-09-15 20:49:31 -06:00
zuul.d Clean up role tests 2018-09-09 11:43:03 +01:00
.gitignore Updated from OpenStack Ansible Tests 2018-10-02 14:55:21 +00:00
.gitreview Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
CONTRIBUTING.rst Replace Chinese punctuation with English punctuation 2018-09-12 13:04:07 +00:00
LICENSE Update 2016-08-25 14:56:41 +02:00
README.rst Add bugs url link to README 2018-09-27 03:11:41 +00:00
Vagrantfile Updated from OpenStack Ansible Tests 2018-09-28 06:22:12 +00:00
bindep.txt Updated from OpenStack Ansible Tests 2017-12-06 00:06:46 +00:00
manual-test.rc Functional testing for the role gate 2016-09-23 05:56:55 +02:00
run_tests.sh Updated from OpenStack Ansible Tests 2018-09-29 04:56:20 +00:00
setup.cfg Update mailinglist from dev to discuss 2018-12-05 09:14:52 +08:00
setup.py Updated from global requirements 2017-03-02 11:52:11 +00:00
tox.ini fix tox python3 overrides 2018-09-26 18:44:34 -04:00

README.rst

Team and repository tags

image

OpenStack-Ansible Trove

Ansible role that installs and configures OpenStack Trove. Trove is installed behind the Apache webserver listening on port 8779 by default.

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: https://git.openstack.org/cgit/openstack/openstack-ansible-os_trove

The project home is at: https://launchpad.net/openstack-ansible

The project bug tracker is located at: https://bugs.launchpad.net/openstack-ansible

Required Variables

This list is not exhaustive at present. See role internals for further details.

# trove TCP listening port
trove_service_port: 8779

Example Playbook

- name: Install trove service
  hosts: trove_all
  user: root
  roles:
     - { role: "os_trove", tags: [ "os-trove" ] }
  vars:
    is_metal: "{{ properties.is_metal|default(false) }}"