kolla-ansible/compose/cinder-volume.yml
Steven Dake f1dbf25797 WIP: Remove data containers and adjust compose files
Remove all data containers from the repository except the one image
we intend to reuse for each data container.  Adjust compose files to
remove all references to the unique data containers which serve no
purpose other then to take up extra resources.

Needs VOLUME in data containers exported in the compose files.

Change-Id: Id7746110946ef9836180cf57302aaf827e7e5405
Partially-Implements: blueprint one-data-container
2015-08-24 05:46:10 -07:00

19 lines
367 B
YAML

cinderdata:
image: kollaglue/centos-rdo-data:latest
name: cinderdata
restart: on-failure
cindervolume:
image: kollaglue/centos-rdo-cinder-volume:latest
name: cinder-volume
net: host
privileged: true
restart: always
env_file:
- openstack.env
volumes:
- /lib/modules:/lib/modules:ro
- /dev:/dev
volumes_from:
- cinderdata