文章目录
- 一、MQ的作用
- 二、cinder架构图
- 三、各组件的作用
- 四、cinder对接glusterfs
一、MQ的作用
- 服务内各组件交互通过MQ进行
二、cinder架构图
- IET,Linux用软件做存储,CNA识别过去就是IET
- TGT,物理存储,CNA识别过去就是TGT
三、各组件的作用
cinder-api :cinder模块对外唯一接口,cinder的endpoint,接收和处理rest请求。
cinder-scheduler : 根据预定的调度过滤策略以及权重计算策略,选择出合适的后端来处理任务。
cinder-volume :负责与后端存储进行对接,通过各厂商提供的driver将Openstack操作转换为存储操作。
四、cinder对接glusterfs
- glusterfs节点操作,创建一个卷
mkdir -p /storage/block
gluster volume create testvol 192.168.30.66:/storage/block force
- cinder存储节点操作,安装驱动,修改cinder.conf
yum install -y glusterfs-fuse.x86_64
打开icinder.conf文件
添加glusterfs
enabled_backends=lvm,glusterfs
文件最后添加,然后保存退出
[glusterfs]
volume_driver=cinder.volume.drivers.glusterfs.GlusterfsDriver
glusterfs_shares_config=/etc/cinder/glusterfs_shares
volume_backend_name=testvol
- 创建/etc/cinder/glusterfs_shares,将卷的名字写入这个文件
- 创建一个类型
- 类型与卷绑定
cinder type-key glusterfs set volume_backend_name=testvol
重启服务
openstack-service restart cinder
查看,已经挂载
- 到底层查看分配一个10G的盘
创建云硬盘cinder管,附加云硬盘nova管
计算节点也需要安装glusterfs驱动