Skip to main content

Overview

Polystack Block Storage connects to a broad range of enterprise storage platforms through a pluggable driver architecture. Each backend is configured as a named section in cinder.conf, registered with the scheduler, and exposed to tenants as one or more volume types. Multiple backends can run simultaneously, enabling tiered storage, vendor-specific pools, and failover configurations within a single environment.
Administrator Access Required — This operation requires the admin role. Contact your Polystack administrator if you do not have sufficient permissions.
Prerequisites
  • Administrator credentials with the admin role
  • The storage array must be network-accessible from all volume service nodes
  • Vendor-specific driver packages installed on the volume service nodes
  • Authentication credentials (username, password, API endpoint) for each backend

Supported Backends


Multi-Backend Configuration

Cinder supports multiple backends in a single cinder.conf. Each backend is an independent section. The [DEFAULT] section lists all enabled backends by name.
cinder.conf — multi-backend example
In Ironcore deployments, backend configuration is managed through the deployment console globals. The cinder.conf file is generated from Ansible templates and should not be edited directly on the host. Use ironcore-ansible deploy --tags cinder to apply changes.

Backend-Specific Configuration Examples

Ceph RBD is the native Ironcore production backend. It supports thin provisioning by default and enables zero-copy clones between the image pool and volume pool for fast instance launches.
[ceph-ssd] section
NetApp ONTAP supports iSCSI, NFS, and Fibre Channel protocols. The netapp_vserver parameter specifies the storage virtual machine (SVM) on the array.
[netapp-iscsi] section
Pure Storage uses a REST API token for authentication. Both iSCSI and Fibre Channel drivers are available.
[pure-flash] section (iSCSI)
[pure-flash-fc] section (Fibre Channel)
Dell PowerStore supports iSCSI, NVMe-oF, and Fibre Channel. The management IP and credentials are required.
[dell-powerstore] section
HPE 3PAR and Primera share the same driver. The CPG (Common Provisioning Group) name maps to a storage pool on the array.
[hpe-3par] section
IBM FlashSystem uses the Storwize/SVC driver. The san_clustername must match the system name on the array.
[ibm-flash] section

Register a Backend and Create a Volume Type

After configuring a backend, create a volume type that maps to it. Tenants select the volume type when provisioning volumes to route requests to a specific backend.

Verify backend registration

Navigate to Storage > Storage Backends (admin view) and confirm the volume service host for the backend shows state Up and status Enabled.

Create a volume type

Navigate to Storage > Volume Types (admin view) and click Create Volume Type.Enter a name that communicates the backend to users — e.g., SSD-Flash or Enterprise-NAS.

Set the backend name extra spec

After creating the type, click View Extra Specs and add:Click Confirm to save the extra spec.

Validate

Create a test volume using the new volume type and confirm it provisions successfully.
Volume type mapped — tenants can now select this backend when creating volumes.

Failover Between Backends

When a backend becomes unavailable, volumes can be migrated to an alternative backend using the volume migration API. This is an admin operation and results in data movement.
Migrate a volume to a different backend
Check migration status
Volume migration copies all data from the source backend to the destination. Migration time depends on volume size and network throughput. The volume remains available (online migration) but may experience reduced I/O performance during the transfer.
For backends that support replication (such as Pure Storage and NetApp ONTAP), use the replication failover API instead of data migration:
Failover to replication target

Troubleshooting

Cause: The volume service failed to initialize the driver, or the backend configuration section is missing from cinder.conf.Resolution:
  • Verify the backend name is listed in enabled_backends in [DEFAULT]
  • Check volume service logs for driver initialization errors
  • Confirm network connectivity from the volume service node to the storage array management IP
Check volume service status
Cause: No backend matches the scheduler filters for the requested volume type, or the backend is reporting no free capacity.Resolution:
  • Verify the volume_backend_name extra spec on the volume type matches the backend name exactly (case-sensitive)
  • Check backend capacity: openstack volume backend pool list --long
  • Confirm the volume service is in state up and status enabled
Cause: Incorrect credentials or the management IP is unreachable.Resolution:
  • Verify the san_ip, san_login, and san_password (or equivalent) values in cinder.conf
  • Test network connectivity: curl -k https://<san_ip>/api/v1 from the volume service node
  • Check if a firewall or ACL is blocking access from the volume service node

Next Steps

Volume Types Admin

Create and manage volume types that expose backends to tenants

Thin Provisioning

Configure thin and thick provisioning per backend

Storage Tiers

Configure multi-tier storage pools across different hardware classes

Backup Backends

Configure backup destinations for volume data protection