Charm Interface - Cinder Backend
Go to file
Liam Young f772252bcb Remove copy/pasta errors in names in unit tests 2019-01-16 14:45:19 +00:00
unit_tests Remove copy/pasta errors in names in unit tests 2019-01-16 14:45:19 +00:00
.gitignore Add unit_tests and drive by assorted 2019-01-15 15:36:46 +00:00
.testr.conf Add unit_tests and drive by assorted 2019-01-15 15:36:46 +00:00
.travis.yml Add unit_tests and drive by assorted 2019-01-15 15:36:46 +00:00
README.md initial commit, fleshed out basic interface function, readme, etc 2018-08-06 10:14:10 -04:00
interface.yaml Add unit_tests and drive by assorted 2019-01-15 15:36:46 +00:00
provides.py Add unit_tests and drive by assorted 2019-01-15 15:36:46 +00:00
test-requirements.txt Add unit_tests and drive by assorted 2019-01-15 15:36:46 +00:00
tox.ini Add unit_tests and drive by assorted 2019-01-15 15:36:46 +00:00

README.md

Overview

Basic interface for sending Cinder subordinate backend configuration to principle Cinder charms.

Usage

Requires

This interface layer will set the following state:

  • {relation_name}.connected The relation is established, but the charm may not have provided any backend information.

For example, the subordinate would handle the cinder-backend.connected state with something like:

@when('cinder-backend.connected')
def configure_cinder(cinder_principal):
    config = {'api-endpoint': '1.2.3.4',
              'admin-username': 'admin',
              'admin-password': 'openstack',
              'api-version': '1.0'}
    cinder_principle.configure_principal(
      backend_name='my_backend', configuration=config)

Contact Information