Role os_cinder for OpenStack-Ansible
Go to file
Travis Truman 428113e3b2 pin version of ansible-lint we use for testing
Latest release of ansible-lint 2.4.0 has broken
role linter tasks by introducing a dependency on
openstack-ansible-plugins for all linting

While we may choose to adapt the linter tox env
in the future, for now we want to return to previous
linter behavior.

Change-Id: I84e23155e818424c30df81660ccfe9e4d619516b
2016-03-15 11:43:34 -04:00
defaults Use upper-constraints file in developer mode 2016-03-14 16:32:10 +00:00
doc [DOCS] Cleanup the role docs for consistency and clarity 2016-03-09 21:03:52 -05:00
files/rootwrap.d Update Master SHAs - 17 Jan 2016 2016-01-18 23:58:48 +00:00
handlers Style - Not in YAML dictionary format 2016-02-12 15:26:42 +00:00
meta Enable developer mode 2016-03-08 10:42:49 +00:00
tasks Use upper-constraints file in developer mode 2016-03-14 16:32:10 +00:00
templates Account for oslo_config deprecation in cinder.conf template 2016-03-09 14:29:50 -05:00
tests Use upper-constraints file in developer mode 2016-03-14 16:32:10 +00:00
.gitignore Implement base configuration for independent repository 2016-03-01 09:38:00 -08: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
other-requirements.txt Add curl to bindep requirements 2016-03-04 19:22:54 +00:00
README.rst [DOCS] Cleanup the role docs for consistency and clarity 2016-03-09 21:03:52 -05:00
run_tests.sh Implement base configuration for independent repository 2016-03-01 09:38:00 -08: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 pin version of ansible-lint we use for testing 2016-03-15 11:43:34 -04:00
tox.ini Enable functional convergence testing 2016-03-08 16:20:23 +00:00

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