Juju Charm - Cinder
Go to file
James Page 0cf0078dd3 Add support for cinder->glance comms for volume snapshots from images 2013-03-21 17:12:33 +00:00
hooks Add support for cinder->glance comms for volume snapshots from images 2013-03-21 17:12:33 +00:00
scripts Better checking of open ports to exclude false positives. 2013-03-05 14:16:09 -07:00
README Add README, copyright. Drop example and deployer logs. 2012-11-28 16:03:42 -08:00
config.yaml HTTPS support. 2013-02-19 17:42:47 -08:00
copyright Add README, copyright. Drop example and deployer logs. 2012-11-28 16:03:42 -08:00
metadata.yaml Add support for cinder->glance comms for volume snapshots from images 2013-03-21 17:12:33 +00:00
revision Sync openstack-common. 2013-03-15 12:08:12 -07:00

README

Overview
--------

This charm provides the Cinder volume service for OpenStack.  It is intended to
be used alongside the other OpenStack components, starting with the Folsom
release.

Cinder is made up of 3 separate services: an API service, a scheduler and a
volume service.  This charm allows them to be deployed in different
combination, depending on user preference and requirements.

This charm was developed to support deploying Folsom on both
Ubuntu Quantal and Ubuntu Precise.  Since Cinder is only available for
Ubuntu 12.04 via the Ubuntu Cloud Archive, deploying this charm to a
Precise machine will by default install Cinder and its dependencies from
the Cloud Archive.

Usage
-----

Cinder may be deployed in a number of ways.  This charm focuses on 3 main
configurations.  All require the existence of the other core OpenStack
services deployed via Juju charms, specifically: mysql, rabbitmq-server,
keystone and nova-cloud-controller.  The following assumes these services
have already been deployed.

a. Basic, all-in-one using local storage and iSCSI.

The api server, scheduler and volume service are all deployed into the same
unit.  Local storage will be initialized as a LVM phsyical device, and a volume
group initialized.  Instance volumes will be created locally as logical volumes
and exported to instances via iSCSI.  This is ideal for small-scale deployments
or testing:

    $ cat >cinder.cfg <<END
    cinder:
        block-device: sdc
        overwrite: true
    END
    $ juju deploy --config=cinder.cfg cinder
    $ juju add-relation cinder keystone
    $ juju add-relation cinder mysql
    $ juju add-relation cinder rabbitmq-server
    $ juju add-relation cinder nova-cloud-controller

b. Separate volume units for scale out, using local storage and iSCSI.

Separating the volume service from the API service allows the storage pool
to easily scale without the added complexity that accompanies load-balancing
the API server.  When we've exhausted local storage on volume serve, we can
simply add-unit to expand our capacity.  Future requests to allocate volumes
will be distributed across the pool for volume servers according to the
availability of storage space.

    $ cat >cinder.cfg <<END
    cinder-api:
        enabled-services: api, scheduler
    cinder-volume:
        enabled-serfvices: volume
        block-device: sdc
        overwrite: true
    END
    $ juju deploy --config=cinder.cfg cinder cinder-api
    $ juju deploy --config=cinder.cfg cinder cinder-api
    $ juju add-relation cinder-api mysql
    $ juju add-relation cinder-api rabbitmq-server
    $ juju add-relation cinder-api keystone
    $ juju add-relation cinder-api nova-cloud-controller
    $ juju add-relation cinder-volume mysql
    $ juju add-relation cinder-volume rabbitmq-server

    # When more storage is needed, simply add more volume servers.
    $ juju add-unit cinder-volume

c. All-in-one using Ceph-backed RBD volumes.

All 3 services can be deployed to the same unit, but instead of relying
on local storage to back volumes an external Ceph cluster is used.  This
allows scalability and redundancy needs to be satisified and Cinder's RBD
driver used to create, export and connect volumes to instances.  This assumes
a functioning Ceph cluster has already been deployed using the official Ceph
charm and a relation exists between the Ceph service and nova-compute.
service.

    $ cat >cinder.cfg <<END
    cinder:
        block-device: None
    END
    $ juju deploy --config=cinder.cfg cinder
    $ juju add-relation cinder ceph
    $ juju add-relation cinder keystone
    $ juju add-relation cinder mysql
    $ juju add-relation cinder rabbitmq-server
    $ juju add-relation cinder nova-cloud-controller


Configuration
-------------

The default value for most config options should work for most deployments.

Users should be aware of three options, in particular:

openstack-origin:  Allows Cinder to be installed from a specific apt repository.
                   See config.yaml for a list of supported sources.

block-device:  When using local storage, a block device should be specified to
               back a LVM volume group.  It's important this device exists on
               all nodes that the service may be deployed to.

overwrite:  Whether or not to wipe local storage that of data that may prevent
            it from being initialized as a LVM phsyical device.  This includes
            filesystems and partition tables.  *CAUTION*

enabled-services:  Can be used to separate cinder services between service
                   service units (see previous section)

Contact Information
-------------------

Author: Adam Gandelman <adamg@canonical.com>
Report bugs at: http://bugs.launchpad.net/charms
Location: http://jujucharms.com