Role os_trove for OpenStack-Ansible
Go to file
Jean-Philippe Evrard 747de3b9ec Replace virtualenv-tools by a script
virtualenv-tools has a bug which gets triggered in gates: it can't
change the shebang of a virtualenv python bin/ files if they
were generated with a virtualenv script whose shebang ends with
python2 instead of python.

Because we can't modify virtualenv-tools, we use shell scripts
instead.

Change-Id: Iad3a44f35c57d92dcbbfde4acbd86a3a4eb1879d
Partial-Bug: #1741634
(cherry picked from commit 2b51da5f0a)
2018-03-26 10:46:01 +00:00
defaults Replace virtualenv-tools by a script 2018-03-26 10:46:01 +00:00
doc Initial OSA zuul v3 role jobs 2017-10-31 11:06:55 +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 Optimise apt cache update task 2017-04-21 16:51:57 +01:00
releasenotes Initial OSA zuul v3 role jobs 2017-10-31 11:06:55 +00:00
tasks Replace virtualenv-tools by a script 2018-03-26 10:46:01 +00:00
templates Fix notification configuration 2017-07-26 11:46:56 -05:00
tests Initial OSA zuul v3 role jobs 2017-10-31 11:06:55 +00:00
vars Remove Trusty support from os_trove role 2016-12-15 15:10:27 +00:00
zuul.d Make unstable functional test non-voting 2018-03-26 11:43:39 +01:00
.gitignore Updated from OpenStack Ansible Tests 2017-06-22 15:20:08 +00:00
.gitreview Update .gitreview for stable/pike 2017-08-18 08:00:19 +00:00
CONTRIBUTING.rst Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
LICENSE Update 2016-08-25 14:56:41 +02:00
README.rst Show team and repo badges on README 2016-11-25 16:19:15 +01:00
Vagrantfile Updated from OpenStack Ansible Tests 2017-07-28 15:01:01 +00:00
bindep.txt Updated from OpenStack Ansible Tests 2017-08-24 17:11:32 +00:00
manual-test.rc Functional testing for the role gate 2016-09-23 05:56:55 +02:00
run_tests.sh Initial OSA zuul v3 role jobs 2017-10-31 11:06:55 +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 2017-07-28 12:56:54 +00:00
tox.ini Update vars and test tooling for Pike 2017-08-23 11:43: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) }}"