Re: [openstack-dev] [Neutron][Architecture]Suggestions for the third vendors' plugin and driver

2014-09-14 Thread Irena Berezovsky
Hi, While keeping focused on defining proper approach to deal with Neutron third vendors’ plugin and driver, we also need to provide solution for complimentary critical piece of code maintained in the Nova code base. Introducing new vif_type by neutron L2 Plugin/Driver, requires adding vif plugg

Re: [openstack-dev] [Heat] Defining what is a SupportStatus version

2014-09-14 Thread Clint Byrum
Excerpts from Gauvain Pocentek's message of 2014-09-04 22:29:05 -0700: > Hi, > > A bit of background: I'm working on the publication of the HOT > resources reference on docs.openstack.org. This book is mostly > autogenerated from the heat source code, using the sphinx XML output. To > avoid pub

[openstack-dev] Attach an USB disk to VM [nova]

2014-09-14 Thread pratik maru
Hi, Is there any way to attach an USB disk as an external disk to VM while booting up the VM ? Any help in this respect will be really helpful. Thanks fipuzzles ___ OpenStack-dev mailing list [email protected] http://lists.openstack.or

Re: [openstack-dev] Attach an USB disk to VM [nova]

2014-09-14 Thread Xiandong Meng
What is your concrete user scenario for this request? Where do you expect to plugin the USB disk? On the compute node that hosts the VM or from somewhere else? On Mon, Sep 15, 2014 at 3:01 AM, pratik maru wrote: > Hi, > > Is there any way to attach an USB disk as an external disk to VM while > b

Re: [openstack-dev] China blocking access to OpenStack git review push

2014-09-14 Thread Qiming Teng
> As an alternative to pushing via ssh you can push via https over port > 443 which may bypass this port blockage. Both latest git review and the > version of gerrit that we are running support this. > > The first step is to generate a gerrit http password, this will be used > to authenticate ag

Re: [openstack-dev] Attach an USB disk to VM [nova]

2014-09-14 Thread pratik maru
Hi Xian, Thanks for replying. I have some data which i wants to be passed to VM. To pass this data, I have planned this to attach as an usb disk and this disk will be used inside the vm to read the data. What I am looking is for the functionality similar to "-usb" option with qemu.kvm command.

Re: [openstack-dev] Attach an USB disk to VM [nova]

2014-09-14 Thread Maksym Lobur
Try to use Nova Metadata Serivce [1] or Nova Config Drive [2]. There are options to pass Key-Value data as well as whole files during VM boot. [1] http://docs.openstack.org/grizzly/openstack-compute/admin/content/metadata-service.html [2] http://docs.openstack.org/grizzly/openstack-compute/admin/c

Re: [openstack-dev] Attach an USB disk to VM [nova]

2014-09-14 Thread Denis Makogon
Agreed with Max. With nova you can use file injection mechanism. You just need to build a dictionary of file paths and file content. But I do agree that it's not the same as you want. But it's more than valid way to inject files. Best regards, Denis Makogon понедельник, 15 сентября 2014 г. пользо

[openstack-dev] tempest error

2014-09-14 Thread Nikesh Kumar Mahalka
Hi I deployed a Icehouse devstack on ubuntu 14.04. When i am running tempest test on volume,i am getting errors. I also attached my cinder.conf and tempest.conf file. I am running tempest tests by below command: ./run_tempest.sh tempest.api.volume *Below is error:* Traceback (most recent call l

Re: [openstack-dev] [Neutron][Architecture]Suggestions for the third vendors' plugin and driver

2014-09-14 Thread Germy Lure
Obviously, to a vendor's plugin/driver, the most important thing is API.Yes? NB API for a monolithic plugin or a service plugin and SB API for a service driver or agent, even MD. That's the basic. Now we have released a set of NB APIs with relative stability. The SB APIs' standardization are needed

Re: [openstack-dev] Attach an USB disk to VM [nova]

2014-09-14 Thread Serg Melikyan
If data that are you planning to pass to the VM is considerably large Metadata mechanism may be used for passing at least a link to the source of data and simple shell script that will executed on VM with CloudInit right after the boot to obtain data via simple cURL. On Mon, Sep 15, 2014 at 10:20

Re: [openstack-dev] Attach an USB disk to VM [nova]

2014-09-14 Thread Serg Melikyan
Other approach to the way I have described in the mail above is to use openstack/os-collect-config project to handle downloading and running shell script. On Mon, Sep 15, 2014 at 10:35 AM, Serg Melikyan wrote: > If data that are you planning to pa