Role os_trove for OpenStack-Ansible
Go to file
Kevin Carter b6efe327aa Ensure the components are isolated from the system
This creates a specific slice which all OpenStack services will operate
from. By creating an independent slice these components will be governed
away from the system slice allowing us to better optimise resource
consumption.

See the following for more information on slices:

* https://www.freedesktop.org/software/systemd/man/systemd.slice.html

See for following for more information on resource controls:

* https://www.freedesktop.org/software/systemd/man/systemd.resource-control.html

Tools like ``systemd-cgtop`` and ``systemd-cgls`` will now give us
insight into specific processes, process groups, and resouce consumption
in ways that we've not had access to before. To enable some of this reporting
the accounting options have been added to the [Service] section of the unit
file.

Change-Id: I6dccb6eeabceea30922cbcf3a60e32e841612fd0
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
2017-03-30 15:08:28 +00:00
defaults Ensure the components are isolated from the system 2017-03-30 15:08:28 +00:00
doc Use https instead of http for git.openstack.org 2017-02-06 17:15:48 +07: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 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 Ensure the components are isolated from the system 2017-03-30 15:08:28 +00:00
tasks Ensure the components are isolated from the system 2017-03-30 15:08:28 +00:00
templates Ensure the components are isolated from the system 2017-03-30 15:08:28 +00:00
tests Using updated tempest method for trove api. 2016-11-22 16:18:59 +02: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 Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02: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 12:49:58 -06:00
manual-test.rc Functional testing for the role gate 2016-09-23 05:56:55 +02:00
run_tests.sh Install python2 for Ubuntu 16.04 and CentOS 7 in Vagrant 2017-02-09 10:39:11 +07:00
setup.cfg Add scaffolding for OpenStack-CI tests 2016-08-26 16:26:42 +02:00
setup.py Updated from global requirements 2017-03-02 11:52:11 +00:00
test-requirements.txt Updated from global requirements 2017-02-11 17:49:19 +00:00
tox.ini Use https instead of http for git.openstack.org 2017-02-06 17:15:48 +07: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) }}"