Role os_trove for OpenStack-Ansible
Go to file
Jesse Pretorius 7a34707fe4 Compress test execution logs
The volume of logs we collect in CI jobs are extensive. This
patch ensures that the logs collected are compressed to reduce
the space taken in CI systems.

PYTHONUNBUFFERED is also set to ensure that the console log
from the CI jobs is recorded in the exact order of execution.

Change-Id: I4fe1743d5323ac9cdb70047ae17c4c438d6e4997
Related-Bug: #1620849
2016-09-16 09:15:23 +01:00
defaults Deploy Openstack-Trove (DBaaS) 2016-09-01 15:17:08 +02: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 Deploy Openstack-Trove (DBaaS) 2016-09-01 15:17:08 +02:00
handlers Deploy Openstack-Trove (DBaaS) 2016-09-01 15:17:08 +02: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 Updates 2016-08-25 14:59:31 +02:00
tasks Deploy Openstack-Trove (DBaaS) 2016-09-01 15:17:08 +02:00
templates Deploy Openstack-Trove (DBaaS) 2016-09-01 15:17:08 +02:00
tests Deploy Openstack-Trove (DBaaS) 2016-09-01 15:17:08 +02:00
vars Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
.gitignore Deploy Openstack-Trove (DBaaS) 2016-09-01 15:17:08 +02: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
README.rst Updates 2016-08-25 14:59:31 +02:00
run_tests.sh Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02: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-08-29 07:08:25 +00:00
tox.ini Compress test execution logs 2016-09-16 09:15:23 +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) }}"