Role os_cinder for OpenStack-Ansible
Go to file
Travis Truman 49ca0de95d Cleanup/standardize usage of tags
The numerous tags within the role have been condensed
to two tags: cinder-install and cinder-config

These tags have been chosen as they are namespaced
and cover the two major functions of the role.

Documentation has been updated to inform how each tag
influences the function of the role.

Change-Id: I47d3bacb6f79f69e448691b133c319c0a811179b
2016-07-12 16:15:42 -04:00
defaults Only install to virtual environment 2016-07-07 12:59:19 -04:00
doc [DOCS] Cleanup the role docs for consistency and clarity 2016-03-09 21:03:52 -05:00
files/rootwrap.d Update paste, policy and rootwrap configurations 2016-07-01 2016-07-01 13:21:31 +01:00
handlers Ansible 2.x - Address deprecation warning of bare variables 2016-04-20 16:12:04 -04:00
meta Merge "Update the cinder role to support Ubuntu 16.04 and Systemd" 2016-06-24 16:40:24 +00:00
releasenotes Merge "Clean up 16.04 release note" 2016-07-08 19:37:40 +00:00
tasks Cleanup/standardize usage of tags 2016-07-12 16:15:42 -04:00
templates Only install to virtual environment 2016-07-07 12:59:19 -04:00
tests Update tox configuration 2016-07-08 14:52:31 +01:00
vars Update the cinder role to support Ubuntu 16.04 and Systemd 2016-06-24 08:45:06 -04:00
.gitignore Add .swp files to .gitignore 2016-05-04 15:19:36 +01:00
.gitreview Implement base configuration for independent repository 2016-03-01 09:38:00 -08:00
CONTRIBUTING.rst Convert existing roles into galaxy roles 2015-02-18 10:56:25 +00:00
LICENSE Convert existing roles into galaxy roles 2015-02-18 10:56:25 +00:00
README.rst Cleanup/standardize usage of tags 2016-07-12 16:15:42 -04:00
Vagrantfile Adding Vagrantfile for local developer testing 2016-03-09 21:21:15 -05:00
other-requirements.txt Add dependencies for paramiko 2.0 2016-05-03 08:55:28 +01:00
run_tests.sh Add dependencies for paramiko 2.0 2016-05-03 08:55:28 +01:00
setup.cfg Implement base configuration for independent repository 2016-03-01 09:38:00 -08:00
setup.py Implement base configuration for independent repository 2016-03-01 09:38:00 -08:00
test-requirements.txt Update tox configuration 2016-07-08 14:52:31 +01:00
tox.ini Update tox configuration 2016-07-08 14:52:31 +01:00

README.rst

OpenStack-Ansible Cinder

This Ansible role installs and configures OpenStack Cinder.

The following Cinder services are managed by the role:
  • cinder-api
  • cinder-volume
  • cinder-scheduler

By default, Cinder API v1 and v2 are both enabled.

Support for various Cinder backends is supported by the role. See role internals for further details.

Support for volume backups to Swift or Ceph is support by the role. See role internals for further details.

Default Variables

../../defaults/main.yml

Required Variables

This list is not exhaustive at present. See role internals for further details.

# Comma separated list of Glance API servers
cinder_glance_api_servers: "http://glance_server:9292"

# Hostname or IP address of the Galera database
cinder_galera_address: "1.2.3.4"

Example Playbook

- name: Installation and setup of cinder
  hosts: cinder_all
  user: root
  roles:
    - { role: "os_cinder", tags: [ "os-cinder" ] }
  vars:
    cinder_glance_api_servers: "http://glance_server:9292"
    cinder_galera_address: "{{ internal_lb_vip_address }}"

Tags

This role supports two tags: cinder-install and cinder-config

The cinder-install tag can be used to install and upgrade.

The cinder-config tag can be used to maintain configuration of the service.