# cinder-volume ## Developing Create and activate a virtualenv with the development requirements: virtualenv -p python3 venv source venv/bin/activate pip install -r requirements-dev.txt ## Code overview Get familiarise with [Charmed Operator Framework](https://juju.is/docs/sdk) and [Sunbeam documentation](sunbeam-docs). cinder-volume charm uses the ops\_sunbeam library and extends OSBaseOperatorCharm from the library. cinder-volume charm consumes database relation to connect to database, amqp to connect to rabbitmq. The charm starts cinder-volume service. ## Intended use case cinder-volume charm deploys and configures OpenStack Block storage service. ## Roadmap TODO ## Testing The Python operator framework includes a very nice harness for testing operator behaviour without full deployment. Run tests using command: tox -e py3 ## Deployment This project uses tox for building and managing. To build the charm run: tox -e build To deploy the local test instance: juju deploy ./cinder-volume.charm [sunbeam-docs]: https://opendev.org/openstack/sunbeam-charms/src/branch/main/README.md