how to enable iscsi in devstack

Asked by Ashokkumar c

I installed openstack using devstack.
Can anyone tell me how to enable iscsi storage and how can I make devstack running always ( avoiding ./stack.sh everytime when i boot).

Question information

Language:
English Edit question
Status:
Solved
For:
devstack Edit question
Assignee:
No assignee Edit question
Solved by:
Anthony Young
Solved:
Last query:
Last reply:
Revision history for this message
Ashokkumar c (ashokcse) said :
#1

I want to add extra disk to my instance. Can any one tell me how to make this service available

Revision history for this message
Best Anthony Young (sleepsonthefloor) said :
#2

Add n-vol to ENABLED_SERVICES in your localrc:

ENABLED_SERVICES=g-api,g-reg,key,n-api,n-cpu,n-net,n-sch,n-vnc,horizon,mysql,rabbit,openstackx,n-vol

If you do this, devstack will look for a volume group named "nova-volumes," and configure nova-volume to run with that. If such a volume group does not exist, it will configure nova-volume with a file-backed volume group of the same name.

As for the second question, we are thinking about adding a flag to devstack that would preserve existing data, so that subsequent runs to stack.sh use your existing configuration. Is that what you have in mind?

Revision history for this message
Ashokkumar c (ashokcse) said :
#3

How can I make extra disk from my dashboard. nova-volumes is running but I do not know how to add extra volumes using dashboard, Do I have to change anything in dashboard configuration files..

Revision history for this message
Jesse Andrews (anotherjesse) said :
#4

Diablo dashboard didn't support volumes, if you use the current master of dashboard instead of stable/diablo you will see volumes.

Revision history for this message
Ashokkumar c (ashokcse) said :
#5

Thanks Anthony Young, that solved my question.