Role os_trove for OpenStack-Ansible
Go to file
Kyle L. Henderson 7a803e4946 Add RPC encryption key support
In the Ocata release, trove added support for encrypting the rpc
communication between the guest instances and the control plane.
These settings allow the user to specify installation specific
keys versus using the default keys.

This cherry pick includes: I4d34b7e68b69ce30ee1fb08e7495cd22fa157495

Change-Id: Ie42d754d58e983a15b553ad8a399813c9a700344
2017-04-17 01:11:41 +00:00
defaults Add RPC encryption key support 2017-04-17 01:11:41 +00:00
doc Add RPC encryption key support 2017-04-17 01:11:41 +00:00
examples Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
extras Add RPC encryption key support 2017-04-17 01:11:41 +00: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 Trusty support from os_trove role 2016-12-15 15:10:27 +00:00
releasenotes Add RPC encryption key support 2017-04-17 01:11:41 +00:00
tasks Add RPC encryption key support 2017-04-17 01:11:41 +00:00
templates Add RPC encryption key support 2017-04-17 01:11:41 +00:00
tests Add RPC encryption key support 2017-04-17 01:11:41 +00:00
vars Remove Trusty support from os_trove role 2016-12-15 15:10:27 +00:00
.gitignore Using updated tempest method for trove api. 2016-11-22 16:18:59 +02:00
.gitreview Update .gitreview for stable/ocata 2017-02-03 18:58:32 +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 Remove Trusty support from os_trove role 2016-12-15 15:10:27 +00:00
bindep.txt Install python2-pyOpenSSL package on CentOS 2017-03-03 13:21:27 -06:00
manual-test.rc Functional testing for the role gate 2016-09-23 05:56:55 +02:00
run_tests.sh Update and clean up run_tests.sh 2017-01-06 16:51:56 +00:00
setup.cfg Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
setup.py Updated from global requirements 2016-08-29 07:08:25 +00:00
test-requirements.txt Updated from global requirements 2016-12-02 05:11:15 +00:00
tox.ini Update repo for stable/ocata 2017-02-08 10:48:37 +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) }}"