OpenStack Cinder: Difference between revisions

From OSNEXUS Online Documentation Site
Jump to navigation Jump to search
Line 54: Line 54:
|-
|-
! scope="row"| Volume Attach/Detach
! scope="row"| Volume Attach/Detach
| Yes
| style="text-align: center" | Yes
| Yes
| style="text-align: center" | Yes
| style="background-color: #9FF781;" | Yes
| style="background-color: #9FF781;text-align: center" | Yes
|-
|-
! scope="row"| Snapshot Create/Delete
! scope="row"| Snapshot Create/Delete
| Yes
| style="text-align: center" | Yes
| Yes
| style="text-align: center" | Yes
| style="background-color: #9FF781;" | Yes
| style="background-color: #9FF781;text-align: center" | Yes
|-
|-
! scope="row"| Create Volume from Snapshot
! scope="row"| Create Volume from Snapshot
| Yes
| style="text-align: center" | Yes
| Yes
| style="text-align: center" | Yes
| style="background-color: #9FF781;" | Yes
| style="background-color: #9FF781;text-align: center" | Yes
|-
|-
! scope="row"| Get Volume Stats
! scope="row"| Get Volume Stats
| Yes
| style="text-align: center" | Yes
| Yes
| style="text-align: center" | Yes
| style="background-color: #F3F781;" | In Progress
| style="background-color: #F3F781;text-align: center" | In Progress
|-
|-
! scope="row"| Copy Image to Volume
! scope="row"| Copy Image to Volume
| Yes
| style="text-align: center" | Yes
| Yes
| style="text-align: center" | Yes
| style="background-color: #D8D8D8;" | N/A
| style="background-color: #D8D8D8;text-align: center" | N/A
|-
|-
! scope="row"| Copy Volume to Image
! scope="row"| Copy Volume to Image
| Yes
| style="text-align: center" | Yes
| Yes
| style="text-align: center" | Yes
| style="background-color: #D8D8D8;" | N/A
| style="background-color: #D8D8D8;text-align: center" | N/A
|-
|-
! scope="row"| Clone Volume
! scope="row"| Clone Volume
| Yes
| style="text-align: center" | Yes
| Yes
| style="text-align: center" | Yes
| style="background-color: #9FF781;" | Yes
| style="background-color: #9FF781;text-align: center" | Yes
|-
|-
! scope="row"| Extend Volume
! scope="row"| Extend Volume
| N/A
| style="text-align: center" | N/A
| Yes
| style="text-align: center" | Yes
| style="background-color: #9FF781;" | Yes
| style="background-color: #9FF781;text-align: center" | Yes
|}
|}



Revision as of 22:23, 28 July 2014

Setup

All of our testing has been done in a DevStack environment. Here is a link to their website / setup instructions:

http://devstack.org/

Before running ./stack.sh make sure to add these to your devstack/local.conf file. If there is no local.conf file, you can create your own, or copy the file in the devstack/samples/ directory (replace with values for your QuantaStor)

[[post-config|$CINDER_CONF]]
[DEFAULT]
volume_driver=cinder.volume.drivers.QuantaStor.QuantaStorDriver
qs_ip=192.168.0.101
qs_pool_id=fdb0f5c5-834a-1220-96a1-9a5d3f6664a9
qs_user = admin
qs_password = password

These two lines need to be added to the /opt/stack/cinder/cinder/volume/manager.py file:

'cinder.volume.drivers.QuantaStor.QuantaStorDriver':
'cinder.volume.drivers.QuantaStor.QuantaStorDriver',

For me it is right after line 96. It is in the "MAPPING = {" section with all the other drivers.

Also before running ./stack.sh, make sure that you run the setup with a non root user. This user needs to have password-less sudo privileges to make the process much easier. To create such a user, go through the following steps.

  • In your linux session, type : 'cd devstack'
  • Use a text editor to access /etc/sudoers like : 'sudo visudo /etc/sudoers'
  • Find a line that should look similar, if not identical to this : '%root All=(ALL) ALL'
  • Under that line, write this, making sure to replace 'user' with your username : 'user ALL=(ALL) NOPASSWD:ALL'

Things to Note

  • DevStack runs a bunch of sessions in screens
  • Touch and chmod 777 the file "/var/log/qs_cinder.log" to have the QuantaStor driver also log to a seperate file

Features

Feature Havana Icehouse QuantaStor / Feature Coverage
Volume Attach/Detach Yes Yes Yes
Snapshot Create/Delete Yes Yes Yes
Create Volume from Snapshot Yes Yes Yes
Get Volume Stats Yes Yes In Progress
Copy Image to Volume Yes Yes N/A
Copy Volume to Image Yes Yes N/A
Clone Volume Yes Yes Yes
Extend Volume N/A Yes Yes

Download QuantaStor OpenStack Cinder Driver (BETA 1 Release)

We're still working with our partners on testing our OpenStack Cinder driver. If you'd like access to this early beta driver it is available here

Command Examples