Blockbridge EPSIntroductionBlockbridge is software that transforms commodity infrastructure into
secure multi-tenant storage that operates as a programmable service. It
provides automatic encryption, secure deletion, quality of service,
replication, and programmable security capabilities on your choice of
hardware. Blockbridge uses micro-segmentation to provide isolation that
allows you to concurrently operate OpenStack, Docker, and bare-metal
workflows on shared resources. When used with OpenStack, isolated management
domains are dynamically created on a per-project basis. All volumes and
clones, within and between projects, are automatically cryptographically
isolated and implement secure deletion.
Architecture referenceBlockbridge architectureControl pathsThe Blockbridge driver is packaged with the core distribution of
OpenStack. Operationally, it executes in the context of the Block Storage
service. The driver communicates with an OpenStack-specific API provided
by the Blockbridge EPS platform. Blockbridge optionally communicates with
OpenStack Identity, Compute, and Block Storage services.
Block storage APIBlockbridge is API driven software-defined storage. The system
implements a native HTTP API that is tailored to the specific needs of
OpenStack. Each Block Storage service operation maps to a single back-end
API request that provides ACID semantics. The API is specifically designed
to reduce, if not eliminate, the possibility of inconsistencies between
the Block Storage service and external storage infrastructure in the event
of hardware, software or data center failure.
Extended managementOpenStack users may utilize Blockbridge interfaces to manage
replication, auditing, statistics, and performance information on a
per-project and per-volume basis. In addition, they can manage low-level
data security functions including verification of data authenticity and
encryption key delegation. Native integration with the Identity Service
allows tenants to use a single set of credentials. Integration with Block
storage and Compute services provides dynamic metadata mapping when using
Blockbridge management APIs and tools.
Attribute-based provisioningBlockbridge organizes resources using descriptive identifiers called
attributes. Attributes are assigned by administrators
of the infrastructure. They are used to describe the characteristics of
storage in an application-friendly way. Applications construct queries
that describe storage provisioning constraints and the Blockbridge storage
stack assembles the resources as described.
Any given instance of a Blockbridge volume driver specifies a
query for resources. For example, a query could
specify '+ssd +10.0.0.0 +6nines -production iops.reserve=1000
capacity.reserve=30%'. This query is satisfied by selecting SSD
resources, accessible on the 10.0.0.0 network, with high resiliency, for
non-production workloads, with guaranteed IOPS of 1000 and a storage
reservation for 30% of the volume capacity specified at create
time. Queries and parameters are completely administrator defined: they
reflect the layout, resource, and organizational goals of a specific
deployment.
Supported operationsCreate, delete, clone, attach, and detach volumesCreate and delete volume snapshotsCreate a volume from a snapshotCopy an image to a volumeCopy a volume to an imageExtend a volumeGet volume statisticsSupported protocolsBlockbridge provides iSCSI access to storage. A unique iSCSI data
fabric is programmatically assembled when a volume is attached to an
instance. A fabric is disassembled when a volume is detached from an
instance. Each volume is an isolated SCSI device that supports persistent
reservations.Configuration stepsCreate an authentication tokenWhenever possible, avoid using password-based authentication. Even
if you have created a role-restricted administrative user via Blockbridge,
token-based authentication is preferred. You can generate persistent
authentication tokens using the Blockbridge command-line tool as follows:
$bb -H bb-mn authorization create --notes "OpenStack" --restrict none
Authenticating to https://bb-mn/api
Enter user or access token: system
Password for system:
Authenticated; token expires in 3599 seconds.
== Authorization: ATH4762894C40626410
notes OpenStack
serial ATH4762894C40626410
account system (ACT0762594C40626440)
user system (USR1B62094C40626440)
enabled yes
created at 2015-10-24 22:08:48 +0000
access type online
token suffix xaKUy3gw
restrict none
== Access Token
access token 1/elvMWilMvcLAajl...3ms3U1u2KzfaMw6W8xaKUy3gw
*** Remember to record your access token!Create volume typeBefore configuring and enabling the Blockbridge volume driver,
register an OpenStack volume type and associate it with a
volume_backend_name. In this example, a volume type,
'Production', is associated with the volume_backend_name
'blockbridge_prod': $cinder type-create Production
$cinder type-key Production volume_backend_name=blockbridge_prodSpecify volume driverConfigure the Blockbridge volume driver in
/etc/cinder/cinder.conf. Your
volume_backend_name must match the value specified in the
cinder type-key command in the previous step.
volume_driver = cinder.volume.drivers.blockbridge.BlockbridgeISCSIDriver
volume_backend_name = blockbridge_prodSpecify API endpoint and authenticationConfigure the API endpoint and authentication. The following
example uses an authentication token. You must create your own as
described above.
blockbridge_api_host = [ip or dns of management cluster]
blockbridge_auth_token = 1/elvMWilMvcLAajl...3ms3U1u2KzfaMw6W8xaKUy3gwSpecify resource queryBy default, a single pool is configured (implied) with a default
resource query of '+openstack'. Within Blockbridge,
datastore resources that advertise the 'openstack' attribute will be
selected to fulfill OpenStack provisioning requests. If you prefer a more
specific query, define a custom pool configuration.
blockbridge_pools = Production: +production +qos iops.reserve=5000Pools support storage systems that offer multiple classes of
service. You may wish to configure multiple pools to implement more
sophisticated scheduling capabilities.
Configuration optionsConfiguration examplecinder.conf example file[Default]
enabled_backends = bb_devel bb_prod
[bb_prod]
volume_driver = cinder.volume.drivers.blockbridge.BlockbridgeISCSIDriver
volume_backend_name = blockbridge_prod
blockbridge_api_host = [ip or dns of management cluster]
blockbridge_auth_token = 1/elvMWilMvcLAajl...3ms3U1u2KzfaMw6W8xaKUy3gw
blockbridge_pools = Production: +production +qos iops.reserve=5000
[bb_devel]
volume_driver = cinder.volume.drivers.blockbridge.BlockbridgeISCSIDriver
volume_backend_name = blockbridge_devel
blockbridge_api_host = [ip or dns of management cluster]
blockbridge_auth_token = 1/elvMWilMvcLAajl...3ms3U1u2KzfaMw6W8xaKUy3gw
blockbridge_pools = Development: +developmentMultiple volume typesVolume types are exposed to tenants,
pools are not. To offer multiple classes of storage to
OpenStack tenants, you should define multiple volume types. Simply repeat
the process above for each desired type. Be sure to specify a unique
volume_backend_name and pool configuration for each type. The
cinder.conf example included with this
documentation illustrates configuration of multiple types.
Testing resourcesBlockbridge is freely available for testing purposes and deploys in
seconds as a Docker container. This is the same container used to run
continuous integration for OpenStack. For more information visit www.blockbridge.io.