Role os_trove for OpenStack-Ansible
Go to file
ZhijunWei 3bbc52b399 Update messaging notification configuration
This patch add the conditional inclusion of the notification
section of the service configuration. This ensures that oslo.messaging
notifications use the correct transport for deployments that have
separate rpc and notify messaging backends. For example, if the
transport_url is not provided in the notification section of the
service configuration, the transport_url specified in the default
section will be used instead.

This patch conditionally selects the notifier driver. The noop
driver will be selected when notification publishing is disabled.
The messagingv2 driver is selected when notification publishing is
enabled.

Change-Id: Ie967b281e15127bbf611aca557e99ac6b3d1cd4b
Closes-Bug: #1794320
2018-09-27 02:16:53 +00:00
defaults Update messaging notification configuration 2018-09-27 02:16:53 +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 Update reno for stable/rocky 2018-08-10 16:48:43 +00:00
tasks Merge "use include_tasks instead of include" 2018-09-08 16:11:42 +00:00
templates Update messaging notification configuration 2018-09-27 02:16:53 +00:00
tests Merge "Trivial: Fix the pep8 warning" 2018-09-13 10:32:46 +00: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-03-27 15:56:55 +00:00
.gitreview Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
bindep.txt Updated from OpenStack Ansible Tests 2017-12-06 00:06:46 +00: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
manual-test.rc Functional testing for the role gate 2016-09-23 05:56:55 +02:00
README.rst Fix doc8 failure 2018-08-28 09:43:40 +02:00
run_tests.sh Updated from OpenStack Ansible Tests 2018-05-09 19:43:22 +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
tox.ini Clean up role tests 2018-09-09 11:43:03 +01:00
Vagrantfile Updated from OpenStack Ansible Tests 2018-06-06 00:44:31 +00:00

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

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) }}"