Glance/Cinder-store-proposal
Glance Cinder Driver
There is currently a Cinder store in Glance, however it does not support uploads and downloads. This is a proposal to allow Cinder to act as a data store for Glance images that supports upload and download by using Cinder volumes as containers for image data. There would be a 1-to-1 mapping of Glance images to Cinder volumes.
What are the benefits of this approach?
This will allow Glance to store images on the large and diverse array of SAN and NAS storage systems supported by Cinder. It also allows for storing images as block devices to enable the features mentioned in the “Subsequent Features” section of this wiki page.
Glance and Cinder using common backend storage will allow for storage optimizations when creating volumes from images or storing images as volumes. Some examples are deduplication and fast replication (create-volume-from-image).
How do you configure Glance on Cinder?
These new configuration options will need to be added to the current Cinder store options:
- cinder_store_tenant - string - The Cinder tenant in which to store images
- cinder_store_user - string - The Cinder user used to access Cinder
- cinder_store_key - string - The Cinder key used to access Cinder
- cinder_volume_type - string (optional)- The uuid of the volume type to assign to volumes created by Glance
How would an image upload work?
- The user begins streaming the image data to Glance as usual.
- Make a request to the Cinder API to create a new volume with the configured volume type with the volume size being the smallest possible volume size that is greater than the image size.
- Attach the newly created volume to the Glance node using the Brick library.
- Stream the incoming bits into the volume.
- Detach the volume from the Glance node using the Brick library, set the image location to “cinder://
‘, and return image details to the user.
How would an image download work?
- The user sends a request to download the image
- Retrieve the backend volume id from the image location and attach the volume to the Glance node using Brick library
- Stream the bits from the volume to the user
- Detach the volume from the glance node using Brick library
How would a Nova boot work?
Nova would download the image via Glance without needing knowledge that Cinder is storing the images.
Single tenant vs Multi tenant? How do we prevent the volume being deleted/changed out from under Glance?
Single-tenant
The Cinder store will only allow for ‘single-tenant’ use. Glance will use the credentials and tenant provided in glance-api.conf to create and attach to volumes. Credentials will not be stored in the image location. Volumes cannot be deleted without the Glance service knowing since only the glance user will have access to it’s volumes in Cinder.
Multi-tenant
Multi-tenant, I.E. storing volumes in the users tenant, should not be supported because:
- There is no way to support image sharing
- Reauthentication due to the user token expiring would present problems
- There is no way to prevent users from deleting/modifying volumes without Glance having knowledge.
How do we allow for Image Sharing?
This is trivial because the service user will have access to all image volumes in cinder.
Example Configuration
以 kolla/centos-source-glance-api:train
镜像在Kubernetes中部署为例,Cinder使用iSCSI后端存储,介绍Glance Cinder Driver配置思路。
服务配置
以Cinder使用iSCSI后端存储为例,Glance用户需要通过iSCSI方式,把Cinder卷挂载至本地,挂载中Glance需要有访问和使用iSCSI的权限,涉及提权操作,需要配置如下相关配置文件:
- /etc/glance/glance-api.conf(配置cinder连接信息)
- /etc/glance/rootwrap.conf(提权相关)
- /etc/glance/rootwrap.d/glance_cinder_store.filters(提权相关)
- /etc/sudoers.d/glance-sudoers(提权相关)
/etc/glance/glance-api.conf
1 | [glance_store] |
/etc/glance/rootwrap.conf
1 | Configuration for nova-rootwrap |
/etc/glance/rootwrap.d/glance_cinder_store.filters
1 | glance-rootwrap command filters for glance cinder store |
/etc/sudoers.d/glance-sudoers
1 | Defaults:glance !requiretty |
POD配置
Glance容器需要与主机的iSCSI服务有交互,同时有提权的需求。参考相关配置项如下:
1 | spec: |