Role os_trove for OpenStack-Ansible
Go to file
Jesse Pretorius 3b01cf9853 Simplify pip options/constraints mechanism
The current constraints generation for the
installation involves multiple tasks and multiple
variables.

Using multiple tasks extends the installation time
unnecessarily and the additional variables are
unnecessary.

This patch aims to simplify the mechanism and
hopes to speed it up a little.

Change-Id: Ie37ab6be65cfb9f368cec7da6b9de78ca5385075
2016-11-02 18:16:43 +00:00
defaults Simplify pip options/constraints mechanism 2016-11-02 18:16:43 +00:00
doc Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
examples Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
extras Fix trove deployment errors 2016-10-27 12:11:25 -04:00
handlers Update role with fixes for AIO testing 2016-09-15 12:41:14 -05:00
library Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
meta Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
releasenotes Simplify pip options/constraints mechanism 2016-11-02 18:16:43 +00:00
tasks Simplify pip options/constraints mechanism 2016-11-02 18:16:43 +00:00
templates Update paste, policy and rootwrap configurations 2016-10-06 2016-10-06 14:40:33 +01:00
tests Merge "Fix trove deployment errors" 2016-10-28 00:58:43 +00:00
vars Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
.gitignore Ansible 2.1.1 role testing 2016-09-19 14:17:04 -04:00
.gitreview Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
bindep.txt Compress test execution logs 2016-09-16 09:15:23 +01: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
manual-test.rc Functional testing for the role gate 2016-09-23 05:56:55 +02:00
README.rst Updates 2016-08-25 14:59:31 +02:00
run_tests.sh Ansible 2.1.1 role testing 2016-09-19 14:17:04 -04: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-11-02 15:38:07 +00:00
tox.ini Use upper constraints for all tox targets 2016-10-19 07:44:55 +01:00
Vagrantfile Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00

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