Role os_trove for OpenStack-Ansible
Go to file
Zuul dd85a5bd40 Merge "Only replace python when re-initializing the venv" into stable/queens 2018-04-30 06:06:06 +00:00
defaults Replace virtualenv-tools by a script 2018-02-16 14:42:47 +00:00
doc Remove pip_install dependency 2017-12-05 11:56:32 +00:00
examples Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
extras Remove trove_regular_user 2017-07-27 07:52:00 -05:00
handlers Remove Trusty support from os_trove role 2016-12-15 15:10:27 +00:00
library Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
meta Remove pip_install dependency 2017-12-05 11:56:32 +00:00
releasenotes Remove setting of version/release from releasenotes 2017-11-17 08:06:56 +01:00
tasks Merge "Only replace python when re-initializing the venv" into stable/queens 2018-04-30 06:06:06 +00:00
templates Remove Trove's support for Heat 2018-02-16 14:43:10 +00:00
tests Merge "Point to Queens instead of master" into stable/queens 2018-02-16 09:30:58 +00:00
vars Adds CentOS 7 support 2017-11-23 16:26:54 +00:00
zuul.d Stop running non-voting jobs in gate 2018-02-16 14:42:28 +00:00
.gitignore Updated from OpenStack Ansible Tests 2017-06-22 15:20:08 +00:00
.gitreview Update .gitreview for stable/queens 2018-02-14 15:51:04 +00:00
CONTRIBUTING.rst Update links in CONTRIBUTING.rst 2017-09-20 09:28:37 +08:00
LICENSE Update 2016-08-25 14:56:41 +02:00
README.rst Update links in README 2017-08-22 13:36:35 +08:00
Vagrantfile Updated from OpenStack Ansible Tests 2018-02-09 09:15:34 +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 2017-11-10 13:18:04 +00:00
setup.cfg Update URLs in documents according to document migration 2017-07-19 09:33:49 +08:00
setup.py Updated from global requirements 2017-03-02 11:52:11 +00:00
test-requirements.txt Updated from global requirements 2018-02-07 19:42:20 +00:00
tox.ini Point to Queens instead of master 2018-02-15 14:44:34 +00:00

README.rst

Team and repository tags

image

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.

# trove TCP listening port
trove_service_port: 8779

Example Playbook

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