summaryrefslogtreecommitdiffstats
path: root/meta-openstack/README.setup
diff options
context:
space:
mode:
authorVu Tran <vu.tran@windriver.com>2014-03-18 21:00:06 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-03-24 16:41:59 -0400
commit70ed2ece07ffc406249dcc4edc17ee2cdfcf5d9d (patch)
tree4f7c66c7ceaf110d3453ef1b66a27696e4d88ffd /meta-openstack/README.setup
parent7e3426478edc190eb39002efdcea84a02f5fae30 (diff)
downloadmeta-cloud-services-70ed2ece07ffc406249dcc4edc17ee2cdfcf5d9d.tar.gz
cinder: enable ceph rbd volume backend
Add ceph rbd backend into multi-backend cinder-volume support. Signed-off-by: Vu Tran <vu.tran@windriver.com>
Diffstat (limited to 'meta-openstack/README.setup')
-rw-r--r--meta-openstack/README.setup11
1 files changed, 7 insertions, 4 deletions
diff --git a/meta-openstack/README.setup b/meta-openstack/README.setup
index 0657c9d..6fc3b4a 100644
--- a/meta-openstack/README.setup
+++ b/meta-openstack/README.setup
@@ -160,11 +160,12 @@ following steps will validate a simple compute node guest launch:
160 160
161* Cinder Multi-backend * 161* Cinder Multi-backend *
162 162
163Cinder currently is configured to support multi-backend: lvm-iscsi, nfs, glusterfs backends. 163Cinder currently is configured to support multi-backend: lvm-iscsi, nfs,
164When a Cinder volume is created, it's needed to be specified which backend its belong 164glusterfs, and ceph rbd. When a Cinder volume is created, it's needed to
165to through "--volume_type" option passed in "cinder create" command. 165be specified which backend it belongs to through "--volume_type" option passed
166in "cinder create" command.
166 167
167The Cinder volume types for lvm-iscsi and nfs can be created as following steps: 168The Cinder volume types for these backends can be created following the steps:
168 169
169 % . /etc/nova/openrc 170 % . /etc/nova/openrc
170 % cinder type-create lvm_iscsi 171 % cinder type-create lvm_iscsi
@@ -173,6 +174,8 @@ The Cinder volume types for lvm-iscsi and nfs can be created as following steps:
173 % cinder type-key nfs set volume_backend_name=Generic_NFS 174 % cinder type-key nfs set volume_backend_name=Generic_NFS
174 % cinder type-create glusterfs 175 % cinder type-create glusterfs
175 % cinder type-key glusterfs set volume_backend_name=GlusterFS 176 % cinder type-key glusterfs set volume_backend_name=GlusterFS
177 % cinder type-create cephrbd
178 % cinder type-key cephrbd set volume_backend_name=RBD_CEPH
176 179
177For example, to create 1G Cinder volume in lvm-iscsi backend: 180For example, to create 1G Cinder volume in lvm-iscsi backend:
178 181