马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?开始注册
x
1. 检查cinder当前backend配置 使用cinder service-list,查看cinder-volume服务的Host字段格式。 旧版格式:
) S: I- |/ e& b, s) m新版格式:
; [* |- ?+ x! w* J旧版中Host字段是cinder-volume服务所在节点的HOSTNAME,新版中Host字段是HOSTNAME@BACKEND。 如果是旧版,需要先修改为新版,见步骤2。 如果是新版,不需要修改,直接执行步骤3。 " h3 f Q" O7 Q+ V$ V: ]& R
2. 修改旧版backend配置为新版 编辑/etc/cinder/cinder.conf文件,删除其中原有的ceph backend相关配置: [backcolor=rgb(245, 245, 245) !important][url=][/url]( a4 n1 ]6 f u1 k* a# E! C. B
[DEFAULTrbd_store_chunk_size = 4rbd_max_clone_depth = 5rbd_flatten_volume_from_snapshot = truerbd_ceph_conf = /etc/ceph/ceph.confrbd_pool = volumesrados_connect_timeout = -1volume_driver = cinder.volume.drivers.rbd.RBDDriver[backcolor=rgb(245, 245, 245) !important][url=][/url]
$ ^% w7 X. ~6 ?. V/ `) f' ~. ?% S! x5 Y" x8 l: U+ a, z9 v
添加如下配置: [backcolor=rgb(245, 245, 245) !important][url=][/url]
# s% P! P- _5 ~! _9 A2 G) |( O[DEFAULTenabled_backends = ceph[cephrbd_pool = volumesrbd_ceph_conf = /etc/ceph/ceph.confrbd_flatten_volume_from_snapshot = truerbd_max_clone_depth = 5rbd_store_chunk_size = 4rados_connect_timeout = -1glance_api_version = 2volume_backend_name=cephvolume_driver = cinder.volume.drivers.rbd.RBDDriver[backcolor=rgb(245, 245, 245) !important][url=][/url]
8 G, T, Y, V; h; m2 \
+ Z# t$ J/ n, T- |2 B G" t: ]: _重启cinder-volume服务: # service cinder-volume restart # 对于Ubuntu 14.04# systemctl restart openstack-cinder-volume # 对于CentOS 76 q. G" K: k( W( w3 F4 |% Z
执行cinder service-list,查看cinder-volume的Host字段是否变为新版格式。 然后更新已经创建的volume的host属性: # cinder-manage volume update_host --currenthost HOSTNAME --newhost HOSTNAME@BACKEND R6 {, E+ S3 l% p; X5 z
例如: # cinder-manage volume update_host --currenthost node-1.domain.tld --newhost node-1.domain.tld @ceph o" i5 K% ]8 f8 Z7 Z4 U
查看volume 的os-vol-host-attr:host属性已经变为HOSTNAME@BACKEND#RBD的格式:
2 L7 n; u, U' X7 `" N到此,旧版配置格式已经改成新版配置格式,进行步骤3添加另一个ceph后端。 " f' q' M% v$ o9 z( W! U& C
3. 添加一个ceph后端 将新的ceph集群的配置文件复制到所有openstack节点(包括控制节点和计算节点)。 注意:不同ceph集群依靠配置文件的名字区分,如:已有ceph集群的配置文件为/etc/ceph/ceph.conf,如果新集群全用SAS盘,配置文件可以命名为:/etc/ceph/ceph-sas.conf。 然后编辑/etc/cinder/cinder.conf,添加新的ceph backend,编辑完后的相关配置如下: [backcolor=rgb(245, 245, 245) !important][url=][/url]
4 u$ | |% M- |4 S$ p[DEFAULTenabled_backends = ceph,ceph-sas[cephrbd_pool = volumesrbd_ceph_conf = /etc/ceph/ceph.confrbd_flatten_volume_from_snapshot = truerbd_max_clone_depth = 5rbd_store_chunk_size = 4rados_connect_timeout = -1glance_api_version = 2volume_backend_name=cephvolume_driver = cinder.volume.drivers.rbd.RBDDriver[ceph-sasrbd_pool = volumesrbd_ceph_conf = /etc/ceph/ceph-sas.confrbd_flatten_volume_from_snapshot = truerbd_max_clone_depth = 5rbd_store_chunk_size = 4rados_connect_timeout = -1glance_api_version = 2volume_backend_name=ceph-sasvolume_driver = cinder.volume.drivers.rbd.RBDDriver[backcolor=rgb(245, 245, 245) !important][url=][/url]7 G! d( R8 X' x/ C8 r8 _
! v7 i3 b) ~) r8 ~* L重启cinder-volume服务: # service cinder-volume restart # 对于Ubuntu 14.04# systemctl restart openstack-cinder-volume # 对于CentOS 7
U9 w6 f4 Q! j R$ `执行cinder service-list命令,可以看到每个后端对应一个cinder-volume服务:
5 h3 Q; Q2 R& c7 P2 c% O5 q. m* _ s$ R" c+ S
4. 配置volume-type 对于每个ceph后端,创建一个volume type,并将volume type关联配置文件中的volume_backend_name: # cinder type-create ceph# cinder type-key ceph set volume_backend_name=ceph# cinder type-create ceph-sas# cinder type-key ceph-sas set volume_backend_name=ceph-sas1 N7 ^3 s$ {, c& b; F
然后执行cinder type-list可以看到配置的volume type: ' Y: {2 L$ X; ?8 n9 l
8 d% @& u3 }& t5. 创建卷 此后创建卷时,可以指定volume type,将卷创建到指定的ceph后端: # cinder create 10 --name vol-01 --volume-type ceph-sas# z9 V. Y. m" x, z
前端也可选则volume type:
: O! D$ ]$ g' A, R+ K注:如果不指定volume type,cinder-scheduler会忽略volume type,按默认的调度器从所有cinder-volume调度。 |