首页 > 代码库 > Cinder - multi glusterfs volume backends
Cinder - multi glusterfs volume backends
cinder支持后端多种backends共存,确实很适合用户的需求。最近我们公司自己的内部openstack平台后端有sata、ssd的glusterfs volume,研究了下cinder multi backends的配置。实际上主要就是cinder.conf了。
cinder.conf 配置文件如下:
[DEFAULT] enabled_backends = glusterfs1,glusterfs2 # 启用两种glusterfs volume default_volume_type = glusterfs1 # 默认sata volume [glusterfs1] glusterfs_shares_config=/etc/cinder/glusterfs_shares1 volume_driver=cinder.volume.drivers.glusterfs.GlusterfsDriver volume_backend_name=openstack # 待会设置cinder type key的时候用到 [glusterfs2] glusterfs_shares_config=/etc/cinder/glusterfs_shares2 volume_driver=cinder.volume.drivers.glusterfs.GlusterfsDriver volume_backend_name=ssd
[root@controller001 cinder(keystone_admin)]# cat glusterfs_shares1 gluster002.sh.99cloud.net:/openstack # sata volume路径 [root@controller001 cinder(keystone_admin)]# cat glusterfs_shares2 gluster002.sh.99cloud.net:/ssd # ssd volume路径
cinder type-create sata # cinder sata类型 cinder type-key sata set volume_backend_name=openstack #为sata类型设置key value,跟上面的cinder.conf里面的配置文件对应的 cinder type-create ssd # cinder ssd类型 cinder type-key ssd set volume_backend_name=ssd # 为ssd类型设置key value
参考资料:redhat openstack认证培训教材
本文出自 “the-way-to-cloud” 博客,请务必保留此出处http://iceyao.blog.51cto.com/9426658/1601613
Cinder - multi glusterfs volume backends
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。